PHP | Imagick thresholdImage() Function Last Updated : 11 Jul, 2025 Comments Improve Suggest changes Like Article Like Report The Imagick::thresholdImage() function is an inbuilt function in PHP which is used to changes the value of individual pixels based on the threshold value. Syntax: bool Imagick::thresholdImage( $threshold, $channel ) Parameters: This function accepts two parameters as mentioned above and described below: $threshold: This parameter set the threshold value. $channel: This parameter set the channel of image. CHANNEL_DEFAULT is used as a default channel. Return Value: This function returns True on success. Below program illustrates the Imagick::thresholdImage() function in PHP: Program: php <?php // Create an imagick object $imagick = new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png'); // Use thresholdimage function $imagick->thresholdimage(0.5, 2); header("Content-Type: image/jpg"); // Display the output image echo $imagick->getImageBlob(); ?> Output: Related Articles: PHP | Imagick adaptiveSharpenImage() Function PHP | Imagick adaptiveBlurImage() Function Reference: https://www.php.net/manual/en/imagick.thresholdimage.php Create Quiz Comment V vijay_raj Follow 0 Improve V vijay_raj Follow 0 Improve Article Tags : Misc Web Technologies PHP Image-Processing PHP-function PHP-Imagick +2 More Explore BasicsPHP Syntax4 min readPHP Variables5 min readPHP | Functions6 min readPHP Loops4 min readArrayPHP Arrays5 min readPHP Associative Arrays4 min readMultidimensional arrays in PHP5 min readSorting Arrays in PHP4 min readOOPs & InterfacesPHP Classes2 min readPHP | Constructors and Destructors5 min readPHP Access Modifiers4 min readMultiple Inheritance in PHP4 min readMySQL DatabasePHP | MySQL Database Introduction4 min readPHP Database connection2 min readPHP | MySQL ( Creating Database )3 min readPHP | MySQL ( Creating Table )3 min readPHP AdvancePHP Superglobals6 min readPHP | Regular Expressions12 min readPHP Form Handling4 min readPHP File Handling4 min readPHP | Uploading File3 min readPHP Cookies9 min readPHP | Sessions7 min read Like