PHP imageistruecolor 图像GD库函数
-
定义和用法
imageistruecolor - 检查图像是否为真彩色图像 -
版本支持
PHP4 PHP5 PHP7 支持 支持 支持 注意: 此函数需要 GD 2.0.1 或更高版本(推荐 2.0.28 及更高版本)。
-
语法
imageistruecolor ( resource $image )
imageistruecolor() 检查 image 图像是否为真彩色图像。 -
参数
参数 必需的 描述 image 是 图像资源。例如由imagecreatetruecolor() 函数创建返回。 -
返回值
如果 image 是真彩色图像返回 TRUE,否则返回 FALSE。 -
示例
// $im is an image instance // Check if image is a true color image or not if(!imageistruecolor($im)) { // Create a new true color image instance $tc = imagecreatetruecolor(imagesx($im), imagesy($im)); imagecopy($tc, $im, 0, 0, 0, 0, imagesx($im), imagesy($im)); imagedestroy($im); $im = $tc; $tc = NULL; } // Continue working with image instance
-
相关函数
imagecreatetruecolor() - 创建真彩图像。