Imagick::autoLevelImage()函數是PHP中的內置函數,用於調整特定圖像通道的級別。圖像通道的級別在整個量子範圍內設置顏色的最小值和最大值。
用法:
bool Imagick::autoLevelImage( $channel )
參數:該函數接受單個參數$channel,該參數用於設置auto-levelling。
返回值:成功時此函數返回True。
以下示例程序旨在說明PHP中的Imagick::autoLevelImage()函數:
程序1:
<?php
// Create an image object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png');
// Set the autolevelling of image
$imagick->autoLevelImage();
// Display the image
header("Content-Type: image/jpg");
echo $imagick->getImageBlob();
?>
輸出:
程序2:
<?php
// Create an image object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/slider.gif');
// Set the autolevelling of image
$imagick->autoLevelImage();
// Display the image
header("Content-Type: image/gif");
echo $imagick->getImageBlob();
?>
輸出:
相關文章:
- PHP - Imagick borderImage()用法及代碼示例
- PHP - Imagick adaptiveResizeImage()用法及代碼示例
- PHP - Imagick addNoiseImage()用法及代碼示例
參考: http://php.net/manual/en/imagick.autolevelimage.php
相關用法
- PHP Imagick colorFloodfillImage()用法及代碼示例
- PHP Imagick linearStretchImage()用法及代碼示例
- PHP Imagick identifyFormat()用法及代碼示例
- PHP Imagick levelImage()用法及代碼示例
- PHP Imagick morphImages()用法及代碼示例
- PHP Imagick setImageDispose()用法及代碼示例
- PHP Imagick profileImage()用法及代碼示例
- PHP Imagick coalesceImages()用法及代碼示例
- PHP Imagick smushImages()用法及代碼示例
- PHP Imagick functionImage()用法及代碼示例
- PHP Imagick readImageBlob()用法及代碼示例
- PHP Imagick addImage()用法及代碼示例
- PHP Imagick colorizeImage()用法及代碼示例
- PHP Imagick getSamplingFactors()用法及代碼示例
- PHP Imagick clear()用法及代碼示例
注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 PHP | Imagick autoLevelImage() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。