no JPG support?

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
recluse8912

no JPG support?

Post by recluse8912 »

I'm getting the:
"no decode delegate for this image format"
when trying to resize a .JPG. after typing:
"identify -list format"
i noticed that .JPG/.JPEG don't show up at all. did i screw something up?
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Post by magick »

Chances are, when ImageMagick was built, the configure script did not validate the JPEG delegate library which is required to read/write JPEG images. Run the configure script again and look at the last 50 lines of output. It will probably say JPEG was not validated. Look at config.log for -ljpeg and identify the reason the library did not validate. Fix the problem and rerun the configure script until JPEG is validated. Now build and install.
recluse8912

Post by recluse8912 »

it looks like jpeglib.h can't be found. is that something that's included with ImageMagick or do I have to obtain that myself?
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Post by anthony »

You need to install the JPEG library 'devel' files. That is the files needed to build against the library, and not just enough for pre-compiled programs to use the library.
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
Post Reply