PHP |想象一下 getImageGreenPrimary()函数
Imagick::getImageGreenPrimary()函数是PHP中的一个内置函数,用于返回色度绿色原点。此函数返回一个带有键“x”和“y”的数组。
句法:
array Imagick::getImageGreenPrimary( void )
参数:此函数不接受任何参数。
返回值:此函数返回一个包含点的 x 和 y 坐标的数组。
异常:此函数在出错时抛出 ImagickException。
下面的程序说明了PHP中的Imagick::getImageGreenPrimary()函数:
方案一:
getImageGreenPrimary();
print_r($res);
?>
输出:
Array ( [x] => 0.3 [y] => 0.6 )
方案二:
setImageGreenPrimary(12, 19);
// Use getImageGreenPrimary function
$res = $imagick->getImageGreenPrimary();
print_r($res);
?>
输出:
Array ( [x] => 12 [y] => 19 )
参考: https://www. PHP.net/manual/en/imagick.getimagegreenprimary。 PHP