当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Imagick whiteThresholdImage用法及代码示例


Imagick::whiteThresholdImage()函数是PHP中的内置函数,用于将高于阈值的所有像素转换为白色。此函数将阈值以上的所有像素强制变为白色,而阈值以下的所有像素则保持不变。

用法:

bool Imagick::whiteThresholdImage( $threshold )

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


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

以下示例程序旨在说明PHP中的Imagick::whiteThresholdImage()函数:

程序:

<?php 
  
// Create an Imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png'); 
  
// Use whiteThresholdImage function 
$imagick->whiteThresholdImage('red'); 
  
header("Content-Type: image/jpg"); 
  
// Display the output image 
echo $imagick->getImageBlob(); 
?>

输出:

相关文章:

参考: http://php.net/manual/en/imagick.whitethresholdimage.php



相关用法


注:本文由纯净天空筛选整理自Mahadev99大神的英文原创作品 PHP | Imagick whiteThresholdImage Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。