I'm trying to make a thumbnail image on the go with imagick.
Everything works fine when i use this code:
<?php
header('Content-type: image/jpeg');
$source = "image.jpg";
$image = new Imagick();
$image->readImage ($source);
$image->cropThumbnailImage( 160, 120 );
echo $image;
?>
but when I wrap it with <html> and <body> tags I get all those strange characters like:
ÿØÿàJFIFHHÿÛC !"$"$ÿÛC
I couldn't find anywhere hot to use imagick with html tags.
Please help, thanks.