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


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


Imagick::thresholdImage()函數是PHP中的內置函數,用於根據閾值更改單個像素的值。

用法:

bool Imagick::thresholdImage( $threshold, $channel )

參數:該函數接受上述和以下描述的兩個參數:


  • $threshold:此參數設置閾值。
  • $channel:此參數設置圖像的通道。 CHANNEL_DEFAULT用作默認通道。

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

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

程序:

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

輸出:
thresholdimage

相關文章:

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



相關用法


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