📜  PHP | imagick thresholdImage()函数

📅  最后修改于: 2022-05-13 01:56:30.882000             🧑  作者: Mango

PHP | imagick thresholdImage()函数

Imagick::thresholdImage()函数是PHP中的一个内置函数,用于根据阈值更改单个像素的值。

句法:

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

参数:该函数接受上面提到的两个参数,如下所述:

  • $threshold:此参数设置阈值。
  • $channel:此参数设置图像的通道。 CHANNEL_DEFAULT 用作默认通道。

返回值:此函数在成功时返回 True。

下面的程序说明了PHP中的Imagick::thresholdImage()函数:

程序:

thresholdimage(0.5, 2);
header("Content-Type: image/jpg");
  
// Display the output image
echo $imagick->getImageBlob();
?>

输出:
阈值图像

相关文章:

  • PHP | imagick的adaptiveSharpenImage()函数
  • PHP | imagick的adaptiveBlurImage()函数

参考: http: PHP。 PHP