downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

imagejpeg> <imageinterlace
[edit] Last updated: Fri, 25 May 2012

view this page in

imageistruecolor

(PHP 4 >= 4.3.2, PHP 5)

imageistruecolor检查图像是否为真彩色图像

说明

bool imageistruecolor ( resource $image )

imageistruecolor() 检查 image 图像是否为真彩色图像。

Note: 此函数需要 GD 2.0.1 或更高版本(推荐 2.0.28 及更高版本)。

参见 imagecreatetruecolor()

参数

image

由图象创建函数(例如imagecreatetruecolor())返回的图象资源。

返回值

Returns TRUE if the image is truecolor, FALSE otherwise.

范例

Example #1 Simple detection of true color image instances using imageistruecolor()

<?php
// $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$im0000imagesx($im), imagesy($im));
    
imagedestroy($im);

    
$im $tc;
    
$tc NULL;
}

// Continue working with image instance
?>

注释

Note: 此函数需要 GD 2.0.1 或更高版本(推荐 2.0.28 及更高版本)。

参见



add a note add a note User Contributed Notes imageistruecolor
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites