Open In App

PHP | Imagick destroy() Function

Last Updated : 31 Oct, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

The Imagick::destroy() function is an inbuilt function in PHP which is used to destroy the Imagick object and free all the resources associated with it. You can’t access your object content once it is destroyed.

Syntax:

bool Imagick::destroy( void )

Parameters: This function does not accept any parameters.

Return Value: This function returns TRUE on success.

Below program illustrates the Imagick::destroy() function in PHP:

Program:




<?php
  
// Create a new imagick object with image
$imagick = new Imagick(
  
// Use your $imagick object for whatever you want 
// to do here and destroy it after using it.
  
// Destroying that object
$imagick->destroy();
?>


Output: Since image distroyed so it will not display any image.

Reference: https://www.php.net/manual/en/imagick.destroy.php


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads