WP_Image_Editor_Imagick::__destruct()

Source

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

User Contributed Notes

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