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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。