📜  PHP | imagick whiteThresholdImage函数

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

PHP | imagick whiteThresholdImage函数

Imagick::whiteThresholdImage()函数是PHP中的一个内置函数,用于将高于阈值的所有像素转换为白色。此函数强制所有高于阈值的像素变为白色,同时保持低于阈值的所有像素不变。

句法:

bool Imagick::whiteThresholdImage( $threshold )

参数:此函数接受单个参数$threshold ,用于定义像素值的变化。

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

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

程序:

whiteThresholdImage('red');
  
header("Content-Type: image/jpg");
  
// Display the output image
echo $imagick->getImageBlob();
?>

输出:

相关文章:

  • PHP | imagick vignetteimage()函数
  • PHP |想象一下 shadeImage()函数

参考: http: PHP。 PHP