Imagick Won't Read Image
Posted: 2010-11-16T17:10:13-07:00
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:
ImageMagick detects if the file exists, and when it does, spits back the error:
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
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);
Code: Select all
no decode delegate for this image format `' @ error/constitute.c/ReadImage/532
Does anyone have anyone idea whats going on?
Thanks