Imagick::getImageChannelRange()函數是PHP中的一個內置函數,用於獲取通道範圍。
用法:
array Imagick::getImageChannelRange( $channel )
參數:該函數接受單個參數$channel,該參數指定查找圖像通道範圍的通道。頻道的默認值為Imagick::CHANNEL_DEFAULT。
返回值:此函數返回一個數組,其中包含所需通道的最小值和最大值。
以下示例程序旨在說明PHP中的Imagick::getImageChannelRange()函數:
程序1:
原始圖片:
<?php
// Create new Imagick object
$im = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-15.png');
// Using getImageChannelRange function
// with red channel
$res = $im->getImageChannelRange(imagick::CHANNEL_RED);
// Display result
print_r($res);
?>
輸出:
Array ( [minima] => 0 [maxima] => 65535 )
程序2:
原始圖片:
<?php
$string = "Computer Science portal for Geeks!";
// Creating new image of above String
// and add color
$im = new Imagick();
$draw = new ImagickDraw();
// Fill the color in image
$draw->setFillColor(new ImagickPixel('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 ImagickPixel('white'));
// Draw the image
$im->drawImage($draw);
$im->setImageFormat('jpeg');
// Using getImageChannelRange function
// with red channel
$res = $im->getImageChannelRange(imagick::CHANNEL_GREEN);
// Display result
print_r($res);
?>
輸出:
Array ( [minima] => 32896 [maxima] => 65535 )
參考: http://php.net/manual/en/imagick.getimagechannelrange.php
相關用法
- PHP Imagick distortImage()用法及代碼示例
- PHP Imagick readImage()用法及代碼示例
- PHP Imagick readImageFile()用法及代碼示例
- PHP Imagick getCopyright()用法及代碼示例
- PHP Imagick extentImage()用法及代碼示例
- PHP Imagick remapImage()用法及代碼示例
- PHP Imagick readImages()用法及代碼示例
- PHP Imagick separateImageChannel()用法及代碼示例
- PHP Imagick convolveImage()用法及代碼示例
- PHP Imagick despeckleImage()用法及代碼示例
- PHP Imagick sepiaToneImage()用法及代碼示例
- PHP Imagick embossImage()用法及代碼示例
- PHP Imagick enhanceImage()用法及代碼示例
- PHP Imagick encipherImage()用法及代碼示例
- PHP Imagick polaroidImage()用法及代碼示例
注:本文由純淨天空篩選整理自R_Raj大神的英文原創作品 PHP | Imagick getImageChannelRange() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。