Imagick::normalizeImage()函數是PHP中的一個內置函數,用於通過調整像素的顏色以覆蓋整個可用顏色範圍來增強彩色圖像的對比度。
用法:
bool Imagick::normalizeImage( $channel )
參數:該函數接受單個參數$channel。此參數提供對通道模式有效的通道常數。使用按位運算符可以組合多個通道。 Imagick函數中的默認通道為Imagick::CHANNEL_DEFAULT。
返回值:成功時此函數返回True。
以下示例程序旨在說明PHP中的Imagick::normalizeImage()函數:
程序:
<?php
// Create an imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png');
// Create a copy image
$original = clone $imagick;
// Set the width and height of image
$original->cropimage($original->getImageWidth() / 2,
$original->getImageHeight(), 0, 0);
// Use normalizeImage function
$imagick->normalizeImage();
// Use compositeimage function
$imagick->compositeimage($original, \Imagick::COMPOSITE_ATOP, 0, 0);
header("Content-Type: image/jpg");
// Display the output image
echo $imagick->getImageBlob();
?>
輸出:
參考: http://php.net/manual/en/imagick.normalizeimage.php
相關用法
- PHP Gmagick normalizeimage()用法及代碼示例
- PHP Imagick readImage()用法及代碼示例
- PHP Imagick readImageFile()用法及代碼示例
- PHP Imagick convolveImage()用法及代碼示例
- PHP Imagick randomThresholdImage()用法及代碼示例
- PHP Imagick distortImage()用法及代碼示例
- PHP Imagick despeckleImage()用法及代碼示例
- PHP Imagick remapImage()用法及代碼示例
- PHP Imagick separateImageChannel()用法及代碼示例
- PHP Imagick sepiaToneImage()用法及代碼示例
- PHP Imagick readImages()用法及代碼示例
- PHP Imagick identifyImage()用法及代碼示例
- PHP Imagick enhanceImage()用法及代碼示例
- PHP Imagick equalizeImage()用法及代碼示例
- PHP Imagick getIteratorIndex()用法及代碼示例
注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 PHP | Imagick normalizeImage() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。