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


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


Imagick::randomThresholdImage()函数是PHP中的内置函数,用于根据与阈值相比每个像素的强度来更改单个像素的值。结果是high-contrast,two-color图像。

用法:

bool Imagick::randomThresholdImage( $low, $high, $channel )

参数:此函数接受上述和以下所述的三个参数:


  • $low:此参数存储低点的值。
  • $high:此参数存储高点的值。
  • $channel:此参数提供对通道模式有效的通道常数。然后,可以使用按位运算符组合一个以上的通道。 Imagick函数中的默认通道为Imagick::CHANNEL_DEFAULT。

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

原始图片:

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

<?php  
  
// require_once('path/vendor/autoload.php'); 
header('Content-type: image/png'); 
   
//Create Imagick Object 
$image = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-19.png'); 
   
// Use randomThresholdImage Function 
$image->randomThresholdImage(0.3, 0.5, 5); 
   
// Display the image 
echo $image; 
?>

输出:

示例2:

<?php  
  
$string = "Computer Science portal for Geeks!";  
   
// Creating new image of above String  
// and add color and background  
$im = new Imagick();  
$draw = new ImagickDraw();  
   
// Fill the color in image  
$draw->setFillColor(new ImagickPixel('green'));  
   
// Set the text font size  
$draw->setFontSize(50);  
   
$metrix = $im->queryFontMetrics($draw, $string);  
$draw->annotation(0, 40, $string);  
$im->newImage($metrix['textWidth'], $metrix['textHeight'],  
new ImagickPixel('white'));  
   
// Draw the image         
$im->drawImage($draw);  
   
// Use randomThresholdImage Function 
$im->randomThresholdImage(0.3, 0.5, 5); 
    
$im->setImageFormat('jpeg');  
   
header("Content-Type: image/jpg");  
   
// Display the output image  
echo $im->getImageBlob();  
?> 

输出:
randomThresholdImage

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



相关用法


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