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


PHP Imagick thresholdImage()用法及代码示例


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

用法:

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

参数:该函数接受上述和以下描述的两个参数:


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

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

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

程序:

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

输出:
thresholdimage

相关文章:

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



相关用法


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