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


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


Imagick::contrastImage()函數是PHP中的內置函數,用於更改圖像的對比度。此函數增強了圖像較亮和較暗元素之間的強度差異。

用法:

bool Imagick::contrastImage(bool $sharpen)

參數:該函數接受單個參數$sharpen,該參數決定是增加還是減少對比度。


返回值:成功時此函數返回True。

錯誤/異常:此函數在錯誤時引發ImagickException。

下麵給出的程序說明了PHP中的Imagick::contrastImage()函數:

程序1:

<?php 
  
// Create new Imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png'); 
  
// Apply the contrastImage() function 
$imagick->contrastImage(false); 
  
header("Content-Type: image/png"); 
  
// Display the output image 
echo $imagick->getImageBlob(); 
?>

輸出:

程序2:

<?php 
  
// Create new Imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png'); 
  
// Apply the contrastImage() function 
$imagick->contrastImage(true); 
  
header("Content-Type: image/png"); 
  
// Display the output image 
echo $imagick->getImageBlob(); 
?>

輸出:

參考: https://www.php.net/manual/en/imagick.contrastimage.php



相關用法


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