<?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>David Nash &#187; photo</title>
	<atom:link href="http://davidnash.com.au/tag/photo/feed/" rel="self" type="application/rss+xml" />
	<link>http://davidnash.com.au</link>
	<description>Freelance PHP developer - builder of high-quality dynamic websites</description>
	<lastBuildDate>Sun, 25 Jul 2010 23:56:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Batch reduce resolution of images in Ubuntu Linux</title>
		<link>http://davidnash.com.au/2009/02/batch-reduce-resolution-of-images-in-ubuntu-linux/</link>
		<comments>http://davidnash.com.au/2009/02/batch-reduce-resolution-of-images-in-ubuntu-linux/#comments</comments>
		<pubDate>Sun, 22 Feb 2009 03:56:27 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[batch]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[reduce]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://davidnash.com.au/?p=137</guid>
		<description><![CDATA[Open a terminal window or shell (who needs a GUI!?)
sudo apt-get install imagemagick
cd image_folder
mkdir resized
for f in *jpg
do
convert -resize 30% $f resized/$f
done
Easier than Photoshop, I reckon!
I needed this today for some photos I was uploading. Photos from recent cameras are huge and Australian bandwidth doesn&#8217;t cut it. So this really helps.
Obviously you only need to [...]]]></description>
			<content:encoded><![CDATA[<p>Open a terminal window or shell (who needs a GUI!?)<br />
<code>sudo apt-get install imagemagick<br />
cd image_folder<br />
mkdir resized<br />
for f in *jpg<br />
do<br />
convert -resize 30% $f resized/$f<br />
done</code></p>
<p>Easier than Photoshop, I reckon!</p>
<p>I needed this today for some photos I was uploading. Photos from recent cameras are huge and Australian bandwidth doesn&#8217;t cut it. So this really helps.</p>
<p>Obviously you only need to do the first line once. I found this in the Ubuntu forums but it took me a while to find the right combination of keywords in Google. <a href="http://ubuntuforums.org/showthread.php?t=791759">View the original thread.</a></p>
<p>I needed to change jpg to JPG, because the camera used uppercase and Linux is case-sensitive. 30% was good for me but you may need to change that.</p>
<p>If you don&#8217;t understand this, ask me, I&#8217;m happy to help!</p>



Share:


	<a rel="nofollow" target="_blank" href="http://del.icio.us/post?url=http%3A%2F%2Fdavidnash.com.au%2F2009%2F02%2Fbatch-reduce-resolution-of-images-in-ubuntu-linux%2F&amp;title=Batch%20reduce%20resolution%20of%20images%20in%20Ubuntu%20Linux" title="del.icio.us"><img src="http://davidnash.com.au/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdavidnash.com.au%2F2009%2F02%2Fbatch-reduce-resolution-of-images-in-ubuntu-linux%2F&amp;t=Batch%20reduce%20resolution%20of%20images%20in%20Ubuntu%20Linux" title="Facebook"><img src="http://davidnash.com.au/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdavidnash.com.au%2F2009%2F02%2Fbatch-reduce-resolution-of-images-in-ubuntu-linux%2F&amp;title=Batch%20reduce%20resolution%20of%20images%20in%20Ubuntu%20Linux" title="Google"><img src="http://davidnash.com.au/wp-content/plugins/sociable/images/googlebookmark.png" title="Google" alt="Google" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="mailto:?subject=Batch%20reduce%20resolution%20of%20images%20in%20Ubuntu%20Linux&amp;body=http%3A%2F%2Fdavidnash.com.au%2F2009%2F02%2Fbatch-reduce-resolution-of-images-in-ubuntu-linux%2F" title="E-mail this story to a friend!"><img src="http://davidnash.com.au/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdavidnash.com.au%2F2009%2F02%2Fbatch-reduce-resolution-of-images-in-ubuntu-linux%2F" title="Technorati"><img src="http://davidnash.com.au/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://twitter.com/home?status=http%3A%2F%2Fdavidnash.com.au%2F2009%2F02%2Fbatch-reduce-resolution-of-images-in-ubuntu-linux%2F" title="TwitThis"><img src="http://davidnash.com.au/wp-content/plugins/sociable/images/twitter.gif" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://davidnash.com.au/2009/02/batch-reduce-resolution-of-images-in-ubuntu-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
