Friday, November 21, 2025
HomeLanguagesPHP | 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
 

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32405 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6781 POSTS0 COMMENTS
Nicole Veronica
11928 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11997 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7166 POSTS0 COMMENTS
Thapelo Manthata
6862 POSTS0 COMMENTS
Umr Jansen
6847 POSTS0 COMMENTS