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();
?>
輸出:
相關文章:
參考: http://php.net/manual/en/imagick.thresholdimage.php
相關用法
- PHP Imagick distortImage()用法及代碼示例
- PHP Imagick readImage()用法及代碼示例
- PHP Imagick readImageFile()用法及代碼示例
- PHP Imagick getCopyright()用法及代碼示例
- PHP Imagick extentImage()用法及代碼示例
- PHP Imagick remapImage()用法及代碼示例
- PHP Imagick readImages()用法及代碼示例
- PHP Imagick separateImageChannel()用法及代碼示例
- PHP Imagick sepiaToneImage()用法及代碼示例
- PHP Imagick setColorspace()用法及代碼示例
- PHP Imagick convolveImage()用法及代碼示例
- PHP Imagick despeckleImage()用法及代碼示例
- PHP Imagick enhanceImage()用法及代碼示例
- PHP Imagick encipherImage()用法及代碼示例
- PHP Imagick embossImage()用法及代碼示例
注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 PHP | Imagick thresholdImage() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。