<?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>Linux, Open Source and Web 2.0 &#187; imagemagick</title>
	<atom:link href="http://www.itecsoftware.com/tag/imagemagick/feed" rel="self" type="application/rss+xml" />
	<link>http://www.itecsoftware.com</link>
	<description>Itec Software</description>
	<lastBuildDate>Sun, 13 May 2012 19:34:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>ImageMagick from the command line</title>
		<link>http://www.itecsoftware.com/imagemagick-from-the-command-line?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=imagemagick-from-the-command-line</link>
		<comments>http://www.itecsoftware.com/imagemagick-from-the-command-line#comments</comments>
		<pubDate>Fri, 18 Sep 2009 01:24:11 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Useful Stuff]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[crop]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[imagemagick]]></category>
		<category><![CDATA[resize]]></category>
		<category><![CDATA[rotate]]></category>

		<guid isPermaLink="false">http://articles.itecsoftware.com/?p=258</guid>
		<description><![CDATA[<a href="http://www.itecsoftware.com/imagemagick-from-the-command-line" title="ImageMagick from the command line"></a>ImageMagick is such a cool and powerful tool to manipulate images, it&#8217;s a real shame if you don&#8217;t make use of it during your web design or photo album creation. From resizing, compositing and converting all types of file types, &#8230;<p class="read-more"><a href="http://www.itecsoftware.com/imagemagick-from-the-command-line">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://www.itecsoftware.com/imagemagick-from-the-command-line" title="ImageMagick from the command line"></a><!-- google_ad_section_start --><p>ImageMagick is such a cool and powerful tool to manipulate images, it&#8217;s a real shame if you don&#8217;t make use of it during your web design or photo album creation. From resizing, compositing and converting all types of file types, it&#8217;s list of usability cases is endless. It&#8217;s free and available for almost every operating system.</p>
<p>If you don&#8217;t have it on your system yet, here is the <a href="http://www.imagemagick.org/script/download.php" target="_blank">imagemagick download location</a>. You might also have it in your repository, check your package manager as it might be as simple as calling &#8220;sudo apt-get install imagemagick&#8221; (on Ubuntu) or &#8220;sudo yum install imagemagick&#8221; (on Red Hat/CentOs).</p>
<p>Here is a small compilation of command-line tools (by no means a complete list). The list of available commands is actually sheer endless, you&#8217;ll be amazed by how powerful this application is.</p>
<h4>imagemagick resize</h4>
<p><span style="color: #003300;">convert image.gif  -resize 128&#215;128  resized_image.gif</span></p>
<h4>imagemagick crop</h4>
<p><span style="color: #003300;">convert  image.gif  -crop 240&#215;360  cropped-image.gif      (add&#8217;l params for crop location: 240&#215;360+10+10)</span><span style="color: #003300;"><br />
</span></p>
<h4>imagemagick rotate</h4>
<p><span style="color: #003300;">convert image.gif -rotate 90 rotated-image.gif</span></p>
<h4>imagemagick mirror</h4>
<p><span style="color: #003300;">convert image.gif  -flop mirrored-image.gif</span></p>
<p>There are many more, actually way too many to list them all here. Have a look at the official <a href="http://www.imagemagick.org/Usage/" target="_blank">ImageMagick usage page</a> for a complete list of image manipulation actions.</p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.itecsoftware.com/imagemagick-from-the-command-line/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Auto Create Thumnails The Easy Way</title>
		<link>http://www.itecsoftware.com/auto-create-thumnails-the-easy-way?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=auto-create-thumnails-the-easy-way</link>
		<comments>http://www.itecsoftware.com/auto-create-thumnails-the-easy-way#comments</comments>
		<pubDate>Sun, 12 Jul 2009 18:43:23 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Shell Scripting]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[create tumbnails]]></category>
		<category><![CDATA[imagemagick]]></category>

		<guid isPermaLink="false">http://articles.itecsoftware.com/?p=175</guid>
		<description><![CDATA[<a href="http://www.itecsoftware.com/auto-create-thumnails-the-easy-way" title="Auto Create Thumnails The Easy Way"></a>Ever wondered it there is an easy way to resize your images or quickly create thumbnails from your favorite pictures? Search no more, the awesome little utility ImageMagick does it for you. Install it using your package manager, most of &#8230;<p class="read-more"><a href="http://www.itecsoftware.com/auto-create-thumnails-the-easy-way">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://www.itecsoftware.com/auto-create-thumnails-the-easy-way" title="Auto Create Thumnails The Easy Way"></a><!-- google_ad_section_start --><p>Ever wondered it there is an easy way to resize your images or quickly create thumbnails from your favorite pictures?<br />
Search no more, the awesome little utility ImageMagick does it for you.</p>
<p>Install it using your package manager, most of them should have it in their repository.</p>
<p style="padding-left: 30px;color: #008000;">sudo apt-get install imagemagick</p>
<p>Once installed, this command will create tumbnails for all JPG&#8217;s in the current directory, 200 pixel wide/high on the longest side. Eg. if your image is in landscape layout, it&#8217;ll be 200 pixel wide, in portrait format it&#8217;ll be 200 pixel high.</p>
<p style="padding-left: 30px;color: #008000;">for file in *.jpg ; do convert -resize 200 &#8220;$file&#8221; t&#8221;$file&#8221;; done</p>
<p>That&#8217;s it. Simply change 200 to the size of your liking, or change the extension if your images are in gif, png or any other image format.</p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.itecsoftware.com/auto-create-thumnails-the-easy-way/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: basic
Database Caching 7/11 queries in 0.003 seconds using disk: basic
Object Caching 492/494 objects using disk: basic

Served from: www.itecsoftware.com @ 2012-05-19 14:56:05 -->
