PHP |想象一下 colorizeImage()函数
Imagick::colorizeImage()函数是PHP中的一个内置函数,用于将填充颜色与图像中具有指定不透明度的每个像素混合。
句法:
bool Imagick::colorizeImage( mixed $colorize, mixed $opacity, bool $legacy = FALSE )
参数:此函数接受三个参数,如上所述,如下所述:
- $colorize:此参数保存 ImagickPixel 对象或包含着色颜色的字符串。
- $opacity:此参数保存包含不透明度的 ImagickPixel 对象或浮点数。值 1.0 表示完全不透明,0.0 表示完全透明。
- $legacy:这个参数包含一个布尔值,它告诉我们是否需要遗留行为。建议将其保持为 TRUE 以使用字符串颜色。
返回值:此函数在成功时返回 TRUE。
异常:此函数在出错时抛出 ImagickException。
下面的程序说明了PHP中的Imagick::colorizeImage()函数:
方案一:
colorizeImage('blue', 1, true);
header("Content-Type: image/jpg");
// Display the output image
echo $imagick->getImageBlob();
?>
输出:
方案二:
colorizeImage('orange', 0.5, true);
header("Content-Type: image/jpg");
// Display the output image
echo $imagick->getImageBlob();
?>
输出:
参考: https://www. PHP.net/manual/en/imagick.colorizeimage。 PHP