Made of Everything You're Not

No, not the flute playing Eric Lamb; the guitar playing, PHP programmer Eric Lamb. The better Eric Lamb.
  • Home
  • Projects
  • Portfolio
  • Resume

Posts Tagged ‘ImageMagick’

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

Posted in Servers on November 10th, 2008 by Eric Lamb – 2 Comments

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.

Bookmark and Share

Install Imagemagick from source on CENTOS 1386 4.5

Posted in Servers on November 4th, 2008 by Eric Lamb – Be the first to comment
  1. Execute “wget ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick.tar.gz” to download the tarball.
  2. Execute “tar xvfz ImageMagick.tar.gz” to extract the tarball.
  3. Execute “cd ImageMagick-x.x.x” to change the directory
  4. Execute “./configure”
  5. Execute “make”
  6. if no errors execute “make install”
Bookmark and Share
  • Subscribe: Entries | Comments
  • About Me

    Email Email
    Twitter Twitter
    310.739.3322
  • Categories

    • Brain Dump
    • Business
    • Code
    • IT
    • Programming
    • Rant
    • Servers
  • Archives

    • August 2010
    • July 2010
    • June 2010
    • May 2010
    • April 2010
    • March 2010
    • February 2010
    • January 2010
    • December 2009
    • November 2009
    • October 2009
    • September 2009
    • August 2009
    • July 2009
    • June 2009
    • May 2009
    • April 2009
    • March 2009
    • February 2009
    • January 2009
    • December 2008
    • November 2008
    • October 2008

Copyright © 2008 - 2010 Eric Lamb - All rights reserved