PHP | Gmagick getquantumdepth()函数
Gmagick::getquantumdepth()函数是PHP中的一个内置函数,用于返回 Gmagick 对象的量子深度。
句法:
public Gmagick::getquantumdepth( void ) : array
参数:此函数不接受任何参数。
返回值:此函数将 Gmagick 量子深度作为字符串返回。
下面的程序说明了PHP中的 Gmagick::getquantumdepth()函数:
方案一:
原图:
getquantumdepth());
?>
输出:
Array ( [quantumDepthLong] => 16
[quantumDepthString] => Q16
)
方案二:
原图:
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');
// Using getquantumdepth function
print_r($im->getquantumdepth());
?>
输出:
Array ( [quantumDepthLong] => 16
[quantumDepthString] => Q16
)
参考: http: PHP。 PHP