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
$url =
$image = file_get_contents ( $url );
$imagick = new Imagick();
$imagick ->readImageBlob( $image );
header( "Content-Type: image/jpg" );
echo $imagick ->getImageBlob();
?>
|
Output:

Program 2: This program uses Imagick::clear() function to clear all resources associated to imagick object.
<?php
$url =
$image = file_get_contents ( $url );
$imagick = new Imagick();
$imagick ->readImageBlob( $image );
$imagick ->clear();
header( "Content-Type: image/jpg" );
echo $imagick ->getImageBlob();
?>
|
Output:

Reference: https://www.php.net/manual/en/imagick.clear.php
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
28 Jun, 2019
Like Article
Save Article