PHP | Gmagick getimageblueprimary()函数
Gmagick::getimageblueprimary()函数是PHP中的一个内置函数,用于返回色度蓝色原点。
句法:
public Gmagick::getimageblueprimary( void ) : array
参数:此函数不接受任何参数。
返回值:此函数返回一个包含点的 x 和 y 坐标的数组。
下面的程序说明了PHP中的 Gmagick::getimageblueprimary()函数:
方案一:
原图:
getimageblueprimary();
print_r($res);
?>
输出:
Array ( [x] => 0.15000000596046 [y] => 0.059999998658895 )
方案二:
原图:
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');
$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