PHP | Imagick enhanceImage() Function Last Updated : 26 Aug, 2019 Comments Improve Suggest changes Like Article Like Report The Imagick::enhanceImage() function is an inbuilt function in PHP which is used to improve the quality of a noisy image. This function applies the digital filter to improve quality. Syntax: bool Imagick::enhanceImage( void ) Parameter: This function does not accepts any parameter. Return Value: This function returns True on success. Original Image: Below program illustrates the Imagick::enhanceImage() function in PHP: Program: php <?php // require_once('path/vendor/autoload.php'); header('Content-type: image/png'); // Create an Imagick object $image = new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-16.png'); // Use enhanceImage function $image->enhanceImage(); // Display the output image echo $image; ?> Output: Reference: http://php.net/manual/en/imagick.enhanceimage.php Comment More infoAdvertise with us Next Article PHP | Imagick enhanceImage() Function S sarthak_ishu11 Follow Improve Article Tags : Misc Technical Scripter Web Technologies PHP Image-Processing PHP-function PHP-Imagick +3 More Practice Tags : Misc Similar Reads PHP | Gmagick enhanceimage() Function The Gmagick::enhanceimage() function is an inbuilt function in PHP which is used to improve the quality of a noisy image. This function applies the digital filter to improve quality.Syntax:Â Â Gmagick Gmagick::enhanceimage( void ) Parameters: This function does not accepts any parameter.Return Value: 1 min read PHP | Imagick encipherImage() Function The Imagick::encipherImage() function is an inbuilt function in PHP which is used to convert plain pixels image into enciphered pixels. This function simply converts the pixels to enciphered pixels and then the image can be readable only if decipher the image with the same string with which it was e 1 min read PHP | Imagick edgeImage() Function The Imagick::edgeImage() function is an inbuilt function in PHP which is used to enhance the edges within the image. It enhances the edges with the help of a convolution filter of the given radius. Syntax: bool Imagick::edgeImage( $radius ) Parameters: This function accepts single parameter $radius 1 min read PHP | Imagick addImage() Function The Imagick::addImage() function is an inbuilt function in PHP which is used to adds new image to Imagick object image list. After the operation iterator position is moved at the end of the list. This function adds new image to Imagick object from the current position of the source object. The Imagi 1 min read PHP | Imagick equalizeImage() Function The Imagick::equalizeImage() function is an inbuilt function in PHP which is used to equalizes the histogram of an image. Syntax: bool Imagick::equalizeImage( void ) Parameter: This function does not accepts any parameter. Return Value: This function returns True on success. Original Image: Below pr 1 min read Like