PHP |想象一下 getImageBluePrimary()函数
Imagick ::getImageBluePrimary()函数是PHP中的一个内置函数,用于返回色度蓝色原点。
句法:
array Imagick ::getImageBluePrimary( void )
参数:此函数不接受任何参数。
返回值:此函数返回一个包含点的 x 和 y 坐标的数组。
下面的程序说明了PHP中的Imagick ::getImageBluePrimary()函数:
方案一:
原图:
getImageBluePrimary();
print_r($res);
?>
输出:
Array ( [x] => 0.15000000596046 [y] => 0.059999998658895 )
方案二:
原图:
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);
$im->setImageFormat('jpeg');
$im->setImageBluePrimary(2.6, 2.9);
// Using getImageBluePrimary function
$res = $im->getImageBluePrimary();
// Display Result
print_r($res);
?>
输出:
Array ( [x] => 2.6 [y] => 2.9 )
参考: http: PHP。 PHP