<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Made of Everything You&#039;re Not &#187; ImageMagick</title>
	<atom:link href="http://blog.ericlamb.net/tag/imagemagick/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.ericlamb.net</link>
	<description>Thoughts on programming, people and life</description>
	<lastBuildDate>Thu, 27 Oct 2011 01:29:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Fix for &#8220;convert: no decode delegate for this image format &#8220;</title>
		<link>http://blog.ericlamb.net/2008/11/fix-for-convert-no-decode-delegate-for-this-image-format/</link>
		<comments>http://blog.ericlamb.net/2008/11/fix-for-convert-no-decode-delegate-for-this-image-format/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 18:23:08 +0000</pubDate>
		<dc:creator>Eric Lamb</dc:creator>
				<category><![CDATA[Servers]]></category>
		<category><![CDATA[ImageMagick]]></category>

		<guid isPermaLink="false">http://blog.ericlamb.net/?p=77</guid>
		<description><![CDATA[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&#8217;m not sure why it [...]]]></description>
			<content:encoded><![CDATA[<p>While working with ImageMagick on one of my servers I was getting the following error:</p>
<p>convert: no decode delegate for this image format</p>
<p>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&#8217;m not sure why it wasn&#8217;t installed by the OS though&#8230;</p>
<p>Anyway, to fix:</p>
<ol>
<li>Go to: <a href="http://www.imagemagick.org/download/delegates/" onclick="return TrackClick('http%3A%2F%2Fwww.imagemagick.org%2Fdownload%2Fdelegates%2F','Imagemagick+Delegates')" target="_blank" title="Imagemagick Delegates">http://www.imagemagick.org/download/delegates/</a> and download the required/missing delegate library.</li>
<li>Execute &#8220;gunzip libjpeg-6b.tar.gz&#8221;</li>
<li>Execute &#8220;tar -xvf libjpeg-6b.tar&#8221;</li>
<li>Change directories to the newly created &#8220;libjpeg-x&#8221;</li>
<li>Execute &#8220;./configure&#8221;</li>
<li>Execute &#8220;make&#8221;</li>
<li>Execute &#8220;make test&#8221;</li>
<li>Execute &#8220;make -n install&#8221; first to see if the makefile will put the files where you want them.</li>
<li>If there are no errors and you&#8217;re ok with the installation path go ahead and install with &#8220;make install&#8221;</li>
</ol>
<p>NOTE: On my system the manual directory wasnt&#8217; in the expected path so an error was thrown: &#8220;/usr/bin/install: cannot create regular file `/usr/local/man/man1/cjpeg.1&#8242;: No such file or directory&#8221;.</p>
<p>To fix I just created the expected directory &#8220;/usr/local/man/man1/&#8221; and install went smooth.</p>
<p>After that it was a simple matter of reinstalling ImageMagick.</p>
<div><a class="addthis_button" href="http://blog.ericlamb.net//addthis.com/bookmark.php?v=250" addthis:url='http://blog.ericlamb.net/2008/11/fix-for-convert-no-decode-delegate-for-this-image-format/' addthis:title='Fix for &#8220;convert: no decode delegate for this image format &#8220; '><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a></div>]]></content:encoded>
			<wfw:commentRss>http://blog.ericlamb.net/2008/11/fix-for-convert-no-decode-delegate-for-this-image-format/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Install Imagemagick from source on CENTOS 1386 4.5</title>
		<link>http://blog.ericlamb.net/2008/11/install-imagemagick-from-source-on-centos-1386-45/</link>
		<comments>http://blog.ericlamb.net/2008/11/install-imagemagick-from-source-on-centos-1386-45/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 00:17:16 +0000</pubDate>
		<dc:creator>Eric Lamb</dc:creator>
				<category><![CDATA[Servers]]></category>
		<category><![CDATA[ImageMagick]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.ericlamb.net/?p=39</guid>
		<description><![CDATA[Execute &#8220;wget ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick.tar.gz&#8221; to download the tarball. Execute &#8220;tar xvfz ImageMagick.tar.gz&#8221; to extract the tarball. Execute &#8220;cd ImageMagick-x.x.x&#8221; to change the directory Execute &#8220;./configure&#8221; Execute &#8220;make&#8221; if no errors execute &#8220;make install&#8221;]]></description>
			<content:encoded><![CDATA[<ol>
<li>Execute &#8220;wget ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick.tar.gz&#8221; to download the tarball.</li>
<li>Execute &#8220;tar xvfz ImageMagick.tar.gz&#8221; to extract the tarball.</li>
<li>Execute &#8220;cd ImageMagick-x.x.x&#8221; to change the directory</li>
<li>Execute &#8220;./configure&#8221;</li>
<li>Execute &#8220;make&#8221;</li>
<li>if no errors execute &#8220;make install&#8221;</li>
</ol>
<div><a class="addthis_button" href="http://blog.ericlamb.net//addthis.com/bookmark.php?v=250" addthis:url='http://blog.ericlamb.net/2008/11/install-imagemagick-from-source-on-centos-1386-45/' addthis:title='Install Imagemagick from source on CENTOS 1386 4.5 '><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a></div>]]></content:encoded>
			<wfw:commentRss>http://blog.ericlamb.net/2008/11/install-imagemagick-from-source-on-centos-1386-45/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

