當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP Imagick normalizeImage()用法及代碼示例


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(); 
?>

輸出:
normalize image

參考: http://php.net/manual/en/imagick.normalizeimage.php



相關用法


注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 PHP | Imagick normalizeImage() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。