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
相關用法
- PHP Imagick morphImages()用法及代碼示例
- PHP Imagick linearStretchImage()用法及代碼示例
- PHP Imagick colorFloodfillImage()用法及代碼示例
- PHP Imagick setImageDispose()用法及代碼示例
- PHP Imagick profileImage()用法及代碼示例
- PHP Imagick coalesceImages()用法及代碼示例
- PHP Imagick levelImage()用法及代碼示例
- PHP Imagick smushImages()用法及代碼示例
- PHP Imagick functionImage()用法及代碼示例
- PHP Imagick readImageBlob()用法及代碼示例
- PHP Imagick identifyFormat()用法及代碼示例
- PHP Imagick colorizeImage()用法及代碼示例
- PHP Imagick addImage()用法及代碼示例
- PHP Imagick clear()用法及代碼示例
- PHP Imagick getSamplingFactors()用法及代碼示例
注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 PHP | Imagick blackThresholdImage() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。