Page 1 of 1

Imagick Won't Read Image

Posted: 2010-11-16T17:10:13-07:00
by petertell
Hi,

So I'm trying to instantiate a new Image Magick object. If I start a fresh image, its fine, but if I try to start from an image that already exists, IE:

Code: Select all

$image = '/the/location/of/the/image.jpg'
$im = new Imagick($image);
ImageMagick detects if the file exists, and when it does, spits back the error:

Code: Select all

no decode delegate for this image format `' @ error/constitute.c/ReadImage/532
As you can see, its giving the format error, because the image or file its trying to read is blank.

Does anyone have anyone idea whats going on?

Thanks