PHP | Gmagick getimagedepth()函数
Gmagick::getimagedepth()函数是PHP中的一个内置函数,用于获取图像的深度。
句法:
int Gmagick::getimagedepth( void )
参数:此函数不接受任何参数。
返回值:该函数返回图像的深度。
下面的程序说明了PHP中的Gmagick::getimagedepth()函数:
原图1:
方案一:
getimagedepth();
// Display the depth of image
print_r($height);
?>
输出:
8
原始图像 2:
方案二:
setFillColor(new GmagickPixel('green'));
// Set the text font size
$draw->setFontSize(50);
$metrix = $im->queryFontMetrics($draw, $string);
$draw->annotation(0, 40, $string);
$im->newImage($metrix['textWidth'], $metrix['textHeight'],
new GmagickPixel('white'));
// Draw the image
$im->drawImage($draw);
$im->setImageFormat('jpeg');
$dpth = $im->getimagedepth();
// Display the depth of image
print_r($dpth);
?>
输出:
8
参考: http: PHP。 PHP