當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。