当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP imagepalettetotruecolor()用法及代码示例


imagepalettetotruecolor()函数是PHP中的内置函数,用于将基于调色板的图像转换为真彩色。

用法:

bool imagepalettetotruecolor( resource $src )

参数:该函数接受单个参数$src,该参数保存要处理的图像。


返回值:如果转换完成,或者源图像已经是真彩色图像,则此函数返回TRUE,否则返回FALSE。

下面给出的程序说明了PHP中的imagepalettetotruecolor()函数:

程序1:

<?php 
  
// Create an image 
$image = imagecreate(700, 200); 
  
echo '<b>Before conversion:</b> <br>'; 
  
// Check the image type 
check($image); 
  
echo '<b><br>After conversion:</b> <br>'; 
  
// Convert image to true color 
imagepalettetotruecolor($image); 
  
// Check the image type 
check($image); 
  
// Function for cheching the image type 
function check($image) { 
    echo 'Type of image is ' . (imageistruecolor($image) 
             ? 'true color' :'palette'); 
} 
?>

输出:

Before conversion:
Type of image is palette
After conversion:
Type of image is true color

程序2:

<?php 
  
// Create an image of pallete type 
$image = imagecreate(700, 200); 
  
// Convert image to true color 
imagepalettetotruecolor($image); 
  
// Prepare red color 
$red = imagecolorallocate($image, 0xFF, 0x00, 0x00); 
  
// Add text to the image using a local font file 
imagefttext($image, 100, 0, 0, 130, $red,  
       './RugeBoogie-Regular.ttf', 'GeeksforGeeks'); 
  
// Output to browser 
header('Content-type:image/png'); 
imagepng($image); 
imagedestroy($image); 
?>

输出:

参考: https://www.php.net/manual/en/function.imagepalettetotruecolor.php



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | imagepalettetotruecolor() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。