(PHP 4 >= 4.3.2, PHP 5)
imageistruecolor — 檢查圖像是否為真彩色圖像
說明
bool imageistruecolor ( resource$image
)
imageistruecolor() 檢查
image
圖像是否為真彩色圖像。
參數(shù)
image
由圖象創(chuàng)建函數(shù)(例如imagecreatetruecolor())返回的圖象資源。
返回值
如果 image
是真彩色圖像返回 TRUE
,否則返回 FALSE
。
范例
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, $im, 0, 0, 0, 0, imagesx($im), imagesy($im));
imagedestroy($im);
$im = $tc;
$tc = NULL;
}
// Continue working with image instance
?>
注釋
Note: 此函數(shù)需要 GD 2.0.1 或更高版本(推薦 2.0.28 及更高版本)。
參見
imagecreatetruecolor() - 新建一個(gè)真彩色圖像