PHP |想象一下 setImageWhitePoint()函数
Imagick::setImageWhitePoint()函数是PHP中的一个内置函数,用于设置图像色度白点。
句法:
bool Imagick::setImageWhitePoint( float $x, float $y )
参数:该函数接受上面提到的两个参数,如下所述:
- $x:指定白点色度的x坐标。
- $y:指定白点色度的y坐标。
返回值:此函数在成功时返回 TRUE。
异常:此函数在出错时抛出 ImagickException。
下面的程序说明了PHP中的Imagick::setImageWhitePoint()函数:
方案一:
setImageWhitePoint(0.65, 0.89);
// Get the image white point
$whitepoint = $imagick->getImageWhitePoint();
print("".print_r($whitepoint, true)."
");
?>
输出:
Array
(
[x] => 0.65
[y] => 0.89
)
方案二:
setImageWhitePoint(0.2, 0.2);
// Display the image
header("Content-Type: image/png");
echo $imagick->getImagesBlob();
?>
输出:
参考: https://www. PHP.net/manual/en/imagick.setimagewhitepoint。 PHP