Logo
Logo
  • Home
  • Projects
  • Writing
  • Work
  • Request Quote
Logo

Backed by 20+ years of hands-on software development expertise, mithra62 transforms ideas into powerful, reliable solutions—designed to work exactly how you want, every time.

  • Address

    Tucson, AZ 85712
  • Email

    eric@mithra62.com
  • Contact

    +1-310-739-3322

Fix for "convert: no decode delegate for this image format "

  • Home
  • Writing
Fix for "convert: no decode delegate for this image format "
10 Nov 08
  • Servers

While working with ImageMagick on one of my servers I was getting the following error:

convert: no decode delegate for this image format

This means that, more than likely, I was missing the decoding library. Apparently you need to install it and then recompile ImageMagick to work with Jpg files. I'm not sure why it wasn't installed by the OS though...

Anyway, to fix:

  1. Go to: http://www.imagemagick.org/download/delegates/ and download the required/missing delegate library.
  2. Execute "gunzip libjpeg-6b.tar.gz"
  3. Execute "tar -xvf libjpeg-6b.tar"
  4. Change directories to the newly created "libjpeg-x"
  5. Execute "./configure"
  6. Execute "make"
  7. Execute "make test"
  8. Execute "make -n install" first to see if the makefile will put the files where you want them.
  9. If there are no errors and you're ok with the installation path go ahead and install with "make install"

NOTE: On my system the manual directory wasnt' in the expected path so an error was thrown: "/usr/bin/install: cannot create regular file `/usr/local/man/man1/cjpeg.1': No such file or directory".

To fix I just created the expected directory "/usr/local/man/man1/" and install went smooth.

After that it was a simple matter of reinstalling ImageMagick.

Recent Post

  • Budget ExpressionEngine SEO in 2025
    Budget ExpressionEngine SEO in 2025
    07 Oct, 2025
  • The Road So Far
    The Road So Far
    30 Sep, 2025
  • I'm Speaking! (...again...)
    I’m Speaking! (...again…)
    27 Apr, 2022

follow us

© Copyright 2025 | mithra62

  • Home
  • Projects
  • Writing
  • Work
  • Request Quote