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


PHP Imagick whiteThresholdImage用法及代碼示例


Imagick::whiteThresholdImage()函數是PHP中的內置函數,用於將高於閾值的所有像素轉換為白色。此函數將閾值以上的所有像素強製變為白色,而閾值以下的所有像素則保持不變。

用法:

bool Imagick::whiteThresholdImage( $threshold )

參數:此函數接受單個參數$threshold,該參數用於定義像素值的變化。


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

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

程序:

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

輸出:

相關文章:

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



相關用法


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