no decode delegate for this image format

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
stefano@BL
Posts: 5
Joined: 2009-03-15T15:04:52-07:00
Authentication code: 8675309

no decode delegate for this image format

Post by stefano@BL »

Hi,
I have this error message when I run a convert or identify command:

Code: Select all

no decode delegate for this image format `image.jpg' @ constitute.c/ReadImage/526.
Using

Code: Select all

convert -list configuration
I see the deletages row is empty.

How can I configure the delegates? What does I have to configure?

Thank you
bye
stefano
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: no decode delegate for this image format

Post by magick »

When you build ImageMagick from source you must first install any delegate libraries and their headers before you run the configure script. Install the JPEG delegate library and its headers so that jpeg.h is on your system. Under Linux, for example, you need to install libjpeg and libjpeg-devel. Next, run the ImageMagick configure script and review the last 30-40 lines of output. Make sure the output shows that the JPEG library was found and validated. Now build and install ImageMagick and you will have support for JPEG images.
Post Reply