Imagick::levelImage()函數是PHP中的內置函數,用於調整圖像的級別。
用法:
bool Imagick::levelImage( $blackPoint, $gamma, $whitePoint, $channel = Imagick::CHANNEL_DEFAULT )
參數:該函數接受上述和以下所述的四個參數:
- blackPoint:此參數保存圖像的黑點。
- gamma:此參數保存伽瑪值。
- whitePoint:此參數保存圖像的白點。
- channel:此參數保留對通道模式有效的通道常數。使用按位運算符可合並多個通道。
返回值:成功時此函數返回TRUE。
錯誤/異常:此函數在錯誤時引發ImagickException。
以下示例程序旨在說明PHP中的Imagick::levelImage()函數:
程序:
<?php
// Store the image into variable
$imagick=
"https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png";
// Declare new Imagick object
$imagick = new \Imagick($imagick);
// Use Imagick::newPseudoImage() function to create
// a new image using ImageMagick pseudo-formats
$imagick->newPseudoimage(700, 250, 'radial-gradient:red-blue');
// Function to set image format
$imagick->setFormat('png');
// Use Imagick::getQuantum() function to
// return the ImageMagick quantum range
$quantum = $imagick->getQuantum();
// Use Imagick::levelImage() function
$imagick->levelImage($blackPoint / 100, $gamma, $quantum * $whitePoint / 100);
header("Content-Type: image/png");
// Display the image as output
echo $imagick->getImageBlob();
?>
輸出:
參考: https://www.php.net/manual/en/imagick.levelimage.php
相關用法
- PHP Gmagick levelimage()用法及代碼示例
- PHP Imagick getImageChannelMean()用法及代碼示例
- PHP Imagick getImageChannelStatistics()用法及代碼示例
- PHP Imagick getImageCompose()用法及代碼示例
- PHP Imagick setImageCompose()用法及代碼示例
- PHP Imagick setImageClipMask()用法及代碼示例
- PHP Imagick getImageChannelExtrema()用法及代碼示例
- PHP Imagick getImageClipMask()用法及代碼示例
- PHP Imagick haldClutImage()用法及代碼示例
- PHP Imagick getImageBackgroundColor()用法及代碼示例
- PHP Imagick getImageChannelDistortion()用法及代碼示例
- PHP Imagick setImageBluePrimary()用法及代碼示例
- PHP Imagick getImageBorderColor()用法及代碼示例
- PHP Imagick setImageBorderColor()用法及代碼示例
- PHP Imagick setImageBackgroundColor()用法及代碼示例
注:本文由純淨天空篩選整理自krishnakumaryadav大神的英文原創作品 PHP | Imagick levelImage() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。