PHP |想象一下 blackThresholdImage()函数
Imagick::blackThresholdImage()函数是PHP中的一个内置函数,它强制低于阈值的所有像素变为黑色,同时保持高于阈值的所有像素不变。
句法:
bool Imagick::blackThresholdImage( $threshold )
参数:此函数接受一个强制性参数$threshold 。所有低于阈值的像素值都变为黑色。
返回值:此函数在成功时返回 True。
下面的程序说明了PHP中的Imagick::blackThresholdImage()函数:
程序:
blackthresholdimage('rgb(127, 127, 127)');
header("Content-Type: image/jpg");
// Display the output image
echo $imagick->getImageBlob();
?>
输出:
相关文章:
- PHP | imagick的transverseImage()函数
- PHP | imagick vignetteimage()函数
参考: http: PHP。 PHP