I've installed ImageMagick on my Mac and am trying to convert a TIFF image to a JPEG image using the PHP API that is provided by the ImageMagick extension. When I try to do that I get the following error:
no decode delegate for this image format
When I do a convert image1.tiff image1.jpg
on the command line it works.
For some reason the PHP extension for Imagick thinks the TIFF delegate is not installed when it clearly is. Why would I get different results and how could I fix this?