<?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; Resizing</title>
	<atom:link href="http://evolution-systems.co.uk/tag/resizing/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 An Image With PHP</title>
		<link>http://evolution-systems.co.uk/2010/04/08/risizing-an-image-with-php-2/</link>
		<comments>http://evolution-systems.co.uk/2010/04/08/risizing-an-image-with-php-2/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 18:32:24 +0000</pubDate>
		<dc:creator><![CDATA[Matthew Jakeman]]></dc:creator>
				<category><![CDATA[Matts Blog]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Resizing]]></category>

		<guid isPermaLink="false">http://evolution-systems.co.uk/wordpress/?p=464</guid>
		<description><![CDATA[I came across this PHP class today that is great for resizing images. It is extremely easy to use and quite a small class. The class file can be downloaded here: SimpleImage.php A quick example usage to show how simple it is&#8230; include('SimpleImage.php'); $image = new SimpleImage(); $image->load('picture.jpg'); $image->resize(250,400); $image->save('picture2.jpg'); The last time I had [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>I came across this PHP class today that is great for resizing images. It is extremely easy to use and quite a small class. The class file can be downloaded here:</p>
<p><a href="http://www.evolution-systems.co.uk/files/SimpleImage.php">SimpleImage.php</a></p>
<p>A quick example usage to show how simple it is&#8230;</p>
<p><code>   include('SimpleImage.php');<br />   $image = new SimpleImage();<br />   $image->load('picture.jpg');<br />   $image->resize(250,400);<br />   $image->save('picture2.jpg');</code><br />
The last time I had to do some image resizing with PHP was a number of years ago and I seem to remember it being a lot more complicated than this.</p>
<p>Thanks to <a href="http://www.white-hat-web-design.co.uk/articles/php-image-resizing.php">White Hat Web Design</a> for making this little class and making it available.</p>
]]></content:encoded>
			<wfw:commentRss>http://evolution-systems.co.uk/2010/04/08/risizing-an-image-with-php-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>
