📜  PHP | Gmagick separateimagechannel()函数

📅  最后修改于: 2022-05-13 01:56:45.991000             🧑  作者: Mango

PHP | Gmagick separateimagechannel()函数

Gmagick::separateimagechannel()函数是PHP中的一个内置函数,用于从图像中分离通道并返回灰度图像。通道是图像中每个像素的特定颜色分量。

句法:

Gmagick Gmagick::separateimagechannel( int $channel )

参数:此函数接受单个参数$channel ,该参数保存与 CHANNEL 常量之一对应的整数值。

返回值:此函数在成功时返回 Gmagick 对象。

异常:此函数在错误时抛出 GmagickException。

下面给出的程序说明了PHP中的Gmagick::separateimagechannel()函数

使用图像:

程序 1(分离 RED 通道):

separateimagechannel(Gmagick::CHANNEL_RED);
  
// Display the image
header("Content-Type: image/png");
echo $gmagick;
?>

输出:

方案二(分离绿色通道):

separateimagechannel(Gmagick::CHANNEL_GREEN);
  
// Display the image
header("Content-Type: image/png");
echo $gmagick;
?>

输出:

程序 3(用于绘图):

setFillColor('white');
  
// Function to draw rectangle
$draw->rectangle(0, 0, 800, 400);
  
// Set the fill color
$draw->setFillColor('yellow');
  
// Set the font size
$draw->setfontsize(50);
  
// Annotate a text
$draw->annotate(30, 100, 'GeeksforGeeks');
  
// Use of drawimage function
$gmagick->drawImage($draw);
  
// Separate the Gmagick::CHANNEL_BLUE
$gmagick->separateimagechannel(Gmagick::CHANNEL_BLUE);
  
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>

输出:

参考: https://www. PHP.net/manual/en/gmagick.separateimagechannel。 PHP