PHP |想象一下 getImageWhitePoint()函数
Imagick::getImageWhitePoint()函数是PHP中的一个内置函数,用于获取 Imagick 对象的色度白点。
句法:
bool Imagick::getImageWhitePoint( void)
参数:此函数不接受任何参数。
返回值:此函数将色度白点作为关联数组返回,键值为 x 和 y。
下面的程序说明了PHP中的Imagick::getImageWhitePoint()函数:
方案一:
原图:
getImageWhitePoint();
// Display result
print_r($res);
?>
输出:
Array ( [x] => 0.31270000338554 [y] => 0.3289999961853 )
方案二:
原图:
setFillColor(new ImagickPixel('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 ImagickPixel('white'));
// Draw the image
$im->drawImage($draw);
// getting Length of image
// using getimagerelength function
$res = $im->getImageWhitePoint();
// Display result
print_r($res);
?>
输出:
Array ( [x] => 0.31270000338554 [y] => 0.3289999961853 )
参考: http: PHP。 PHP