Gmagick::getimagechanneldepth()函数是PHP中的内置函数,用于返回通道图像的深度。
用法:
int Gmagick::getimagechanneldepth( $channel_type )
参数:该函数接受单个参数$channel_type,该参数保存对通道模式有效的通道常数。频道的默认值为Gmagick::CHANNEL_DEFAULT。
返回值:此函数返回通道深度。
以下示例程序旨在说明PHP中的Gmagick::getimagechanneldepth()函数:
原始图片1:
程序1:
<?php
// Create new Gmagick object
$im = new Gmagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-15.png');
// Using getimagechanneldepth function
// with different channel
echo $im->getimagechanneldepth(Gmagick::CHANNEL_RED) . "</br>";
echo $im->getimagechanneldepth(Gmagick::CHANNEL_GRAY) . "</br>";
echo $im->getimagechanneldepth(Gmagick::CHANNEL_CYAN) . "</br>";
echo $im->getimagechanneldepth(Gmagick::CHANNEL_GREEN) . "</br>";
echo $im->getimagechanneldepth(Gmagick::CHANNEL_BLUE) . "</br>";
?>
输出:
8 8 8 8 8
原始图片2:
程序2:
<?php
$string = "Computer Science portal for Geeks!";
// Creating new image of above String
// and add color
$im = new Gmagick();
$draw = new GmagickDraw();
// Fill the color in image
$draw->setFillColor(new GmagickPixel('green'));
// Set the text font size
$draw->setFontSize(50);
$metrix = $im->queryFontMetrics($draw, $string);
$draw->annotation(0, 40, $string);
$im->newImage($metrix['textWidth'], $metrix['textHeight'],
new GmagickPixel('white'));
// Draw the image
$im->drawImage($draw);
$im->setImageFormat('jpeg');
// Using getImageChannelDepth function
// with different channel
echo $im->getimagechanneldepth(Gmagick::CHANNEL_RED) . "</br>";
echo $im->getimagechanneldepth(Gmagick::CHANNEL_GRAY) . "</br>";
echo $im->getimagechanneldepth(Gmagick::CHANNEL_CYAN) . "</br>";
echo $im->getimagechanneldepth(Gmagick::CHANNEL_GREEN) . "</br>";
echo $im->getimagechanneldepth(Gmagick::CHANNEL_BLUE) . "</br>";
?>
输出:
8 8 8 16 8
参考: http://php.net/manual/en/gmagick.getimagechanneldepth.php
相关用法
- PHP Imagick getImageChannelDepth()用法及代码示例
- PHP Gmagick raiseimage()用法及代码示例
- PHP Gmagick reducenoiseimage()用法及代码示例
- PHP Gmagick drawimage()用法及代码示例
- PHP Gmagick annotateImage()用法及代码示例
- PHP Gmagick oilpaintimage()用法及代码示例
- PHP Gmagick flopimage()用法及代码示例
- PHP Gmagick rotateimage()用法及代码示例
- PHP Gmagick write()用法及代码示例
- PHP Gmagick scaleimage()用法及代码示例
- PHP Gmagick getsize()用法及代码示例
- PHP Gmagick getpackagename()用法及代码示例
- PHP Gmagick getquantumdepth()用法及代码示例
- PHP Gmagick getimagescene()用法及代码示例
- PHP Gmagick setimagerenderingintent()用法及代码示例
注:本文由纯净天空筛选整理自R_Raj大神的英文原创作品 PHP | Gmagick getimagechanneldepth() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。