<?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>Evolution Systems &#187; ImageMagick</title>
	<atom:link href="http://evolution-systems.co.uk/tag/imagemagick/feed/" rel="self" type="application/rss+xml" />
	<link>http://evolution-systems.co.uk</link>
	<description>Web Development, Software Development and Linux Consultancy services</description>
	<lastBuildDate>Fri, 08 Aug 2025 09:18:44 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.42</generator>
	<item>
		<title>Resizing Images With Mogrify</title>
		<link>http://evolution-systems.co.uk/2009/11/23/resizing-images-with-mogrify/</link>
		<comments>http://evolution-systems.co.uk/2009/11/23/resizing-images-with-mogrify/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 12:44:07 +0000</pubDate>
		<dc:creator><![CDATA[Matthew Jakeman]]></dc:creator>
				<category><![CDATA[Matts Blog]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[ImageMagick]]></category>
		<category><![CDATA[Images]]></category>
		<category><![CDATA[Mogrify]]></category>
		<category><![CDATA[Resizing]]></category>

		<guid isPermaLink="false">http://evolution-systems.co.uk/wordpress/?p=417</guid>
		<description><![CDATA[I needed to resize a few images in a directory recently and knew there would be a much more convenient method than opening gimp on each image, resizing etc etc. A quick google search and I came across the &#8216;mogrify&#8217; command. This is part of the ImageMagick suite. This is a nice simple command that [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>I needed to resize a few images in a directory recently and knew there would be a much more convenient method than opening gimp on each image, resizing etc etc.</p>
<p>A quick google search and I came across the &#8216;mogrify&#8217; command. This is part of the ImageMagick suite. This is a nice simple command that allows you to resize images from the CLI.</p>
<p>An example usage would be :</p>
<p><code>mogrify -resize 640x480 *.jpg</code><br />
This would resize every .jpg image in the current directory to 640&#215;480. I needed to resize them all to a fixed width and the following code achieves this.</p>
<p><code>mogrify -resize 640 *.jpg</code></p>
<p>This will definitely make my life a little easier in the future&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://evolution-systems.co.uk/2009/11/23/resizing-images-with-mogrify/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
