(PECL imagick 2, PECL imagick 3)
Imagick::separateImageChannel — 将通道与图像分离
channel
要返回的“通道”。对于除 RGB 之外的颜色空间,您仍然可以使用 CHANNEL_RED、CHANNEL_GREEN、CHANNEL_BLUE 常量来表示第 1、第 2 和第 3 个通道。
成功时返回 true
。
错误时抛出 ImagickException。
示例 #1 Imagick::separateImageChannel()
<?php
function separateImageChannel($imagePath, $channel) {
$imagick = new \Imagick(realpath($imagePath));
$imagick->separateimagechannel($channel);
header("Content-Type: image/jpg");
echo $imagick->getImageBlob();
}
separateImageChannel($imagePath, \Imagick::CHANNEL_GREEN);
?>