Open In App

PHP | Imagick randomThresholdImage() Function

The Imagick::randomThresholdImage() function is an inbuilt function in PHP that is used to change the value of individual pixels based on the intensity of each pixel compared to the threshold. The result is a high-contrast, two-color image. 

Syntax: 



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

Parameters: This function accepts three parameters as mentioned above and described below: 

Return Value: This function returns True on success.



Original Image:  

Below programs illustrate Imagick::randomThresholdImage() function in PHP: 

Program 1:  




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

Output: 

Program 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); 
    
$matrix = $im->queryFontMetrics($draw, $string); 
$draw->annotation(0, 40, $string); 
$im->newImage($matrix['textWidth'], $matrix['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(); 
?>

Output: 

Reference: http://php.net/manual/en/imagick.randomthresholdimage.php
 


Article Tags :