Imagick::separateImageChannel

(PECL imagick 2, PECL imagick 3)

Imagick::separateImageChannel将通道与图像分离

描述

public Imagick::separateImageChannel(int $channel): bool

将通道与图像分离并返回灰度图像。通道是图像中每个像素的特定颜色成分。

参数

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);

?>

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top