Hi,
I'm using GoDaddy. They claim that ImageMagick is installed on all their Linux hosting accounts. So I tried the script below that I found in order to see if I could get this to work.
<?php
header('Content-type: image/jpeg');
$image = new Imagick('image.jpg');
// If 0 is provided as a width or height parameter,
// aspect ratio is maintained
$image->thumbnailImage(100, 0);
echo $image;
?>
The result is...
<b>Fatal error</b>: Cannot instantiate non-existent class: imagick in <b>/home/content/j/o/h/johnbuhladmin/html/Test_Area/Image.php</b> on line <b>5</b><br />
Can anyone guide me on how to set up Imagemagick on GoDaddy ???
Thanks,
John.