Report abuse

<?php

ob_start();
$image->saveimage('');
$newImage = imagecreatefromstring(ob_get_contents());
ob_end_clean();

imagepng($newImage);