(PECL imagick 3)
Imagick::haldClutImage — 替换图像中的颜色
使用 Hald 查找表替换图像中的颜色。 Hald 图像可以使用 HALD 颜色编码器创建。
clut
包含 Hald 查找图像的 Imagick 对象。
channel
提供任何对你的通道模式有效的通道常量。要应用于多个通道,请使用按位运算符组合 通道常量。默认值为 Imagick::CHANNEL_DEFAULT
。参考此 通道常量 列表
成功时返回 true
。
错误时抛出 ImagickException。
示例 #1 Imagick::haldClutImage()
<?php
function haldClutImage($imagePath) {
$imagick = new \Imagick(realpath($imagePath));
$imagickPalette = new \Imagick(realpath("images/hald/hald_8.png"));
$imagickPalette->sepiatoneImage(55);
$imagick->haldClutImage($imagickPalette);
header("Content-Type: image/jpg");
echo $imagick->getImageBlob();
}
?>