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


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

Imagick::blackThresholdImage()函數是PHP中的內置函數,該函數強製將低於閾值的所有像素變為黑色,同時將保持高於閾值的所有像素保持不變。

用法:

bool Imagick::blackThresholdImage( $threshold )

參數:此函數接受一個必填參數$threshold。所有低於閾值的像素值都會變成黑色。


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

以下示例程序旨在說明PHP中的Imagick::blackThresholdImage()函數:

程序:

<?php 
  
// Create an Imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png'); 
  
// Use blackthresholdimage function 
$imagick->blackthresholdimage('rgb(127, 127, 127)'); 
  
header("Content-Type: image/jpg"); 
      
// Display the output image 
echo $imagick->getImageBlob(); 
?>

輸出:

相關文章:

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



相關用法


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