<?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; Image</title>
	<atom:link href="http://evolution-systems.co.uk/tag/image/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>Image File Conversion Script</title>
		<link>http://evolution-systems.co.uk/2011/01/12/image-file-conversion-script/</link>
		<comments>http://evolution-systems.co.uk/2011/01/12/image-file-conversion-script/#comments</comments>
		<pubDate>Wed, 12 Jan 2011 14:45:34 +0000</pubDate>
		<dc:creator><![CDATA[Matthew Jakeman]]></dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Matts Blog]]></category>
		<category><![CDATA[Conversion]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[JPG]]></category>
		<category><![CDATA[PDF]]></category>

		<guid isPermaLink="false">http://evolution-systems.co.uk/?p=612</guid>
		<description><![CDATA[Here&#8217;s a nice simple script to convert all the pdf files in a directory to jpg files using the convert program. To use this you will need ImageMagick installed on your Linux/Unix host.]]></description>
				<content:encoded><![CDATA[<p>Here&#8217;s a nice simple script to convert all the pdf files in a directory to jpg files using the convert program. To use this you will need ImageMagick installed on your Linux/Unix host.</p>
<pre class="brush: bash; title: ; notranslate">
#!/bin/bash

for file in `ls *.pdf`
do
   convert $file `echo $file | sed 's/\.pdf$/\.jpg/'`
done
</pre>
]]></content:encoded>
			<wfw:commentRss>http://evolution-systems.co.uk/2011/01/12/image-file-conversion-script/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<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>
	</channel>
</rss>
