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


PHP imageistruecolor()用法及代码示例


imageistruecolor()函数是PHP中的内置函数,用于查找图像是否为true-color图像。 true-color图像是其中每个像素由三个值(即RGB)指定的图像。

用法:

bool imageistruecolor( resource $image )

参数:该函数接受单个参数$image来保存图像。


返回值:如果图像为真彩色或在其他情况下为FALSE,则此函数返回TRUE。

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

程序1:

<?php 
// Create an image instance with a truecolor image 
$im = imagecreatefrompng( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Check if image is truecolor 
$istruecolor = imageistruecolor($im); 
  
// Show the output to browser 
if($istruecolor) { 
    echo "The image is true color"; 
} 
?>

输出:

The image is true color

程序2:

<?php 
// Create an image instance with a grayscale image 
$im = imagecreatefrompng( 
'https://media.geeksforgeeks.org/wp-content/uploads/20200124094548/grayscaleimage.png'); 
  
// Check if image is truecolor 
$istruecolor = imageistruecolor($im); 
  
// Show the output to browser 
if(!$istruecolor) { 
    echo "The image is not true color"; 
} 
?>

输出:

The image is not true color

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



相关用法


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