Snippets - Imagick

Snippets index page

Display image without saving - Anthony 14/6/2008

This uses Imagick to resize an image and display it without saving it.

  1. <?php 
  2. header("Content-type: image/jpeg");
  3. $image = new Imagick("input.jpg");
  4. $image->thumbnailImage(1000);
  5. echo $image;
  6. ?>

For more examples and information check out the main Imagemagick section.

Display image without saving View

Resize an image and save it View