WP_Image_Editor_Imagick::__destruct()


Description Description


Source Source

File: wp-includes/class-wp-image-editor-imagick.php

	public function __destruct() {
		if ( $this->image instanceof Imagick ) {
			// we don't need the original in memory anymore
			$this->image->clear();
			$this->image->destroy();
		}
	}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.