PHP Fatal error: Uncaught exception 'ImagickException' with message 'no decode delegate for this image format `/var/www/html/test/bmp/images/test.jpg' @ constitute.c/ReadImage/526' in /var/www/html/test/bmp/ex3.php:5\nStack trace:\n#0 /var/www/html/test/bmp/ex3.php(5): Imagick->__construct('images/test.jpg')\n#1 {main}\n thrown in /var/www/html/test/bmp/ex3.php on line 5
PHP Code:<?php
header('Content-type: image/jpeg');
$image = new Imagick('images/test.jpg');
// If 0 is provided as a width or height parameter,
// aspect ratio is maintained
$image->thumbnailImage(100, 100);
echo $image;
?>
Help needed![]()




Bookmarks