Wednesday, July 3, 2024
HomeLanguagesPhpPHP | Imagick randomThresholdImage() Function

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: 

  • $low: This parameter stores the value of the low point.
  • $high: This parameter stores the value of the high point.
  • $channel: This parameter provides the channel constant that is valid for channel mode. More than one channel can be combined using bitwise operator. The defaults channel in Imagick function is Imagick::CHANNEL_DEFAULT.

Return Value: This function returns True on success.

Original Image:  

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

Program 1:  

PHP




<?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




<?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: 

randomThresholdImage

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

Nicole Veronica Rubhabha
Nicole Veronica Rubhabha
A highly competent and organized individual DotNet developer with a track record of architecting and developing web client-server applications. Recognized as a personable, dedicated performer who demonstrates innovation, communication, and teamwork to ensure quality and timely project completion. Expertise in C#, ASP.Net, MVC, LINQ, EF 6, Web Services, SQL Server, MySql, Web development,
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments