PHP | Gmagick getimagewhitepoint()函数
Gmagick::getimagewhitepoint()函数是PHP中的一个内置函数,用于通过键“x”和“y”将色度白点作为关联数组获取。
句法:
array Gmagick::getimagewhitepoint( void )
参数:此函数不接受任何参数。
返回值:该函数返回一个包含色度白点的数组值。
异常:此函数在错误时抛出 GmagickException。
下面给出的程序说明了PHP中的Gmagick::getimagewhitepoint()函数:
使用图像:
方案一:
getimagewhitepoint();
print("".print_r($res, true)."
");
?>
输出:
Array
(
[x] => 0.31270000338554
[y] => 0.3289999961853
)
方案二:
setimagewhitepoint(5, 5);
// Get the white point
$res = $gmagick->getimagewhitepoint();
print("".print_r($res, true)."
");
?>
输出:
Array
(
[x] => 5
[y] => 5
)
参考: https://www. PHP.net/manual/en/gmagick.getimagewhitepoint。 PHP