PHP | Imagick clear() Function Last Updated : 28 Jun, 2019 Comments Improve Suggest changes Like Article Like Report The Imagick::clear() function is an inbuilt function in PHP which is used to clear all resource allocated to an Imagick object. Syntax: bool Imagick::clear( void ) Parameters: This function does not accept any parameter. It just clears off the resources of the Imagick object which is used to call the function. Return Value: This function returns true if the resources are cleared, else it returns false. Program 1: This program display the image content without using Imagick::clear() function. php <?php // Store the image into variable $url = 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png'; // The file_get_contents() function // reads the image as string $image = file_get_contents($url); // Create an Imagick object $imagick = new Imagick(); $imagick->readImageBlob($image); // Comment the clear() function which // will display the image on the web page //$imagick->clear(); header("Content-Type: image/jpg"); // Display the output image echo $imagick->getImageBlob(); ?> Output: Program 2: This program uses Imagick::clear() function to clear all resources associated to imagick object. php <?php // Store the image into variable $url = 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png'; // The file_get_contents() function // reads the image as string $image = file_get_contents($url); // Create an Imagick object $imagick = new Imagick(); $imagick->readImageBlob($image); // Comment the clear() function which // will display the image on the web page $imagick->clear(); header("Content-Type: image/jpg"); // Display the output image echo $imagick->getImageBlob(); ?> Output: Reference: https://www.php.net/manual/en/imagick.clear.php Create Quiz Comment P piyush25pv Follow 0 Improve P piyush25pv Follow 0 Improve Article Tags : Web Technologies PHP PHP-function PHP-Imagick 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