PHP | Imagick previewImages() Function Last Updated : 16 Jun, 2022 Comments Improve Suggest changes Like Article Like Report The Imagick::previewImages() function is an inbuilt function in PHP which is used to quickly pin-point appropriate parameters for image processing. It tiles 9 thumbnails of the specified image with an image processing operation applied at varying strengths. Syntax: bool Imagick::previewImages( int $preview ) Parameters: This function accepts single parameter $preview which holds the preview type constants. Click here to get the list of preview type constants. Return Value: This function returns TRUE on success and FALSE on Error or Failure. Errors/Exceptions: It throws ImagickException while error occurred. Below program illustrates the Imagick::previewImages() function in PHP: Program: php <?php // Store the image source into variable $imagePath = "https://cdncontribute.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png"; // Create new Imagick object $imagick = new \Imagick($imagePath); // Use previewImages() function $imagick->previewImages(imagick::PREVIEW_EDGEDETECT); header("Content-Type: image/png"); // Display output image echo $imagick->getImageBlob(); ?> Output: Reference: https://www.php.net/manual/en/imagick.previewimages.php Create Quiz Comment V VigneshKannan3 Follow 0 Improve V VigneshKannan3 Follow 0 Improve Article Tags : Web Technologies PHP PHP-function PHP-Imagick Explore BasicsPHP Syntax4 min readPHP Variables5 min readPHP | Functions8 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