Gmagick::separateimagechannel()函数是PHP中的内置函数,用于将通道与图像分离并返回灰度图像。通道是图像中每个像素的特定颜色分量。
用法:
Gmagick Gmagick::separateimagechannel( int $channel )
参数:该函数接受单个参数$channel,该参数保存对应于CHANNEL常量之一的整数值。
返回值:成功时,此函数返回Gmagick对象。
异常:此函数在错误时引发GmagickException。
下面给出的程序说明了PHP中的Gmagick::separateimagechannel()函数:
使用的图片:
程序1(分隔RED通道):
<?php
// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
// Separate the Gmagick::CHANNEL_RED
$gmagick->separateimagechannel(Gmagick::CHANNEL_RED);
// Display the image
header("Content-Type:image/png");
echo $gmagick;
?>
输出:
程序2(分隔绿色通道):
<?php
// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
// Separate the Gmagick::CHANNEL_GREEN
$gmagick->separateimagechannel(Gmagick::CHANNEL_GREEN);
// Display the image
header("Content-Type:image/png");
echo $gmagick;
?>
输出:
程序3(用于工程图):
<?php
// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
// Create a GmagickDraw object
$draw = new GmagickDraw();
// Set the color
$draw->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
相关用法
- PHP Imagick separateImageChannel()用法及代码示例
- PHP Gmagick getpackagename()用法及代码示例
- PHP Gmagick setimagerenderingintent()用法及代码示例
- PHP Gmagick getimagescene()用法及代码示例
- PHP Gmagick getquantumdepth()用法及代码示例
- PHP Gmagick getimagesignature()用法及代码示例
- PHP Gmagick setimagebordercolor()用法及代码示例
- PHP Gmagick setfilename()用法及代码示例
- PHP Gmagick getreleasedate()用法及代码示例
- PHP Gmagick drawimage()用法及代码示例
- PHP Gmagick annotateImage()用法及代码示例
- PHP Gmagick getimageblueprimary()用法及代码示例
- PHP Gmagick getimageformat()用法及代码示例
- PHP Gmagick getcopyright()用法及代码示例
- PHP Gmagick getimageresolution()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | Gmagick separateimagechannel() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。