Snippets - Imagick
Display image without saving - Anthony 14/6/2008
This uses Imagick to resize an image and display it without saving it.
<?phpheader("Content-type: image/jpeg");$image = new Imagick("input.jpg");$image->thumbnailImage(100, 0);echo $image;?>
For more examples and information check out the main Imagemagick section.
Display image without saving ViewResize an image and save it View