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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。