<?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>Emanuele Feronato &#187; Photoshop</title>
	<atom:link href="http://www.emanueleferonato.com/category/photoshop/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.emanueleferonato.com</link>
	<description>italian geek and PROgrammer</description>
	<lastBuildDate>Thu, 11 Mar 2010 00:11:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Understanding and creating on the fly Photoshop Color Swatches with php</title>
		<link>http://www.emanueleferonato.com/2009/09/15/understanding-and-creating-on-the-fly-photoshop-color-swatches-with-php/</link>
		<comments>http://www.emanueleferonato.com/2009/09/15/understanding-and-creating-on-the-fly-photoshop-color-swatches-with-php/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 11:19:31 +0000</pubDate>
		<dc:creator>Emanuele Feronato</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Php]]></category>

		<guid isPermaLink="false">http://www.emanueleferonato.com/?p=1650</guid>
		<description><![CDATA[This tutorial won&#8217;t cover basic Color Swatches information&#8230; I suggest you to follow Photoshop&#8217;s help if you don&#8217;t know what I am talking about.

The interesting value of the Swatches palette is the ability to load custom swatch collections, so you can quickly access to specific colors without having to remember any numeric color values.
For instance, [...]]]></description>
			<content:encoded><![CDATA[<p>This tutorial won&#8217;t cover basic Color Swatches information&#8230; I suggest you to follow Photoshop&#8217;s help if you don&#8217;t know what I am talking about.</p>
<p><img src="/images/colorswatches.jpg" alt="" /></p>
<p>The interesting value of the Swatches palette is the ability to load custom swatch collections, so you can quickly access to specific colors without having to remember any numeric color values.</p>
<p>For instance, you can create a custom swatch with the colors you use in your project logo, and later use this swatch when designing the website layout, so you will be sure colors will match (all in all, they are the same ones!).</p>
<p>When you save a Swatch from Photoshop, it will create an Adobe Color <code>.ACO</code> file.</p>
<p>Knowing how Photoshop writes this file will allow us to create our custom swatches with php or another language.<span id="more-1650"></span></p>
<p><strong>Anatomy of a .ACO file</strong></p>
<p><code>ACO</code> files are binary files made by 16-bit integers made of two sections. All values are hexadecimal</p>
<p>The first section of the file is made this way: </p>
<p><strong>0001</strong>: starts with <code>1</code> because it&#8217;s section 1&#8230;</p>
<p><strong>number of colors</strong>: this represents the number of colors in the swatch, such as <code>0001</code>, <code>0002</code>, <code>000f</code>&#8230; probably the limit is really 65535 (FFFF) even if I don&#8217;t see the point in having so much colors.</p>
<p>Then for each color, we have:</p>
<p><strong>0000</strong>: let&#8217;s call it a separator&#8230;</p>
<p><strong>red component</strong>: you have to write it twice, so if you red component is <code>0A</code>, you must write <code>0A0A</code></p>
<p><strong>green component</strong>: same thing as the red one</p>
<p><strong>blue component</strong>: guess what?</p>
<p><strong>0000</strong>: another separator</p>
<p>And the first section is over. Next section starts with</p>
<p><strong>0002</strong>: being the second one&#8230;</p>
<p><strong>number of colors</strong>: same thing as for the first section</p>
<p>Then for each color we have:</p>
<p><strong>0000</strong>: separator</p>
<p><strong>red component</strong>: same as before</p>
<p><strong>green component</strong>: same as before</p>
<p><strong>blue component</strong>: same as before</p>
<p><strong>0000</strong>: separator</p>
<p><strong>0000</strong>: separator (yes, another)</p>
<p><strong>color name length + 1</strong>: do you want to call the color &#8220;my favourite red&#8221;? Then the length is <code>16</code> so the final value will be <code>17</code> = <code>0011</code> in hexadecimal</p>
<p><strong>the name itself</strong>: this is the name itself coded in UTF-16, so if your color name is &#8220;c1&#8243; the name will be <code>0063 0031</code></p>
<p><strong>0000</strong>: separator</p>
<p>Make a file following these rules, and you&#8217;ll have your <code>.ACO</code> file ready to be loaded in Photoshop.</p>
<p>Why should you do that? Well, in case you want to export color schemes you found somewhere in the web&#8230; and here it is a php function that starting with a string with one or more colors in hexadecimal format (such as <code>000000FFFFFF</code> for black and white), returns the <code>ACO</code> format.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> hex_to_aco<span style="color: #009900;">&#40;</span><span style="color: #000088;">$hex</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
     <span style="color: #000088;">$number_of_colors</span> <span style="color: #339933;">=</span> <span style="color: #990000;">strlen</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$hex</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">/</span><span style="color: #cc66cc;">6</span><span style="color: #339933;">;</span>  
     <span style="color: #000088;">$n</span> <span style="color: #339933;">=</span> <span style="color: #990000;">sprintf</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'%04x'</span><span style="color: #339933;">,</span><span style="color: #000088;">$number_of_colors</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
     <span style="color: #000088;">$string</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;0001&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$n</span><span style="color: #339933;">;</span>
     <span style="color: #b1b100;">for</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$x</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span><span style="color: #000088;">$x</span><span style="color: #339933;">&lt;</span><span style="color: #000088;">$number_of_colors</span><span style="color: #339933;">;</span><span style="color: #000088;">$x</span><span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
          <span style="color: #000088;">$string</span><span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;0000&quot;</span><span style="color: #339933;">;</span>
          <span style="color: #000088;">$string</span><span style="color: #339933;">.=</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$hex</span><span style="color: #339933;">,</span><span style="color: #000088;">$x</span><span style="color: #339933;">*</span><span style="color: #cc66cc;">6</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$hex</span><span style="color: #339933;">,</span><span style="color: #000088;">$x</span><span style="color: #339933;">*</span><span style="color: #cc66cc;">6</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
          <span style="color: #000088;">$string</span><span style="color: #339933;">.=</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$hex</span><span style="color: #339933;">,</span><span style="color: #000088;">$x</span><span style="color: #339933;">*</span><span style="color: #cc66cc;">6</span><span style="color: #339933;">+</span><span style="color: #cc66cc;">2</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$hex</span><span style="color: #339933;">,</span><span style="color: #000088;">$x</span><span style="color: #339933;">*</span><span style="color: #cc66cc;">6</span><span style="color: #339933;">+</span><span style="color: #cc66cc;">2</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
          <span style="color: #000088;">$string</span><span style="color: #339933;">.=</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$hex</span><span style="color: #339933;">,</span><span style="color: #000088;">$x</span><span style="color: #339933;">*</span><span style="color: #cc66cc;">6</span><span style="color: #339933;">+</span><span style="color: #cc66cc;">4</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$hex</span><span style="color: #339933;">,</span><span style="color: #000088;">$x</span><span style="color: #339933;">*</span><span style="color: #cc66cc;">6</span><span style="color: #339933;">+</span><span style="color: #cc66cc;">4</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
          <span style="color: #000088;">$string</span><span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;0000&quot;</span><span style="color: #339933;">;</span>
     <span style="color: #009900;">&#125;</span>
     <span style="color: #000088;">$string</span><span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;0002&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$n</span><span style="color: #339933;">;</span>
     <span style="color: #b1b100;">for</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$x</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span><span style="color: #000088;">$x</span><span style="color: #339933;">&lt;</span><span style="color: #000088;">$number_of_colors</span><span style="color: #339933;">;</span><span style="color: #000088;">$x</span><span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
          <span style="color: #000088;">$string</span><span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;0000&quot;</span><span style="color: #339933;">;</span>
          <span style="color: #000088;">$string</span><span style="color: #339933;">.=</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$hex</span><span style="color: #339933;">,</span><span style="color: #000088;">$x</span><span style="color: #339933;">*</span><span style="color: #cc66cc;">6</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$hex</span><span style="color: #339933;">,</span><span style="color: #000088;">$x</span><span style="color: #339933;">*</span><span style="color: #cc66cc;">6</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
          <span style="color: #000088;">$string</span><span style="color: #339933;">.=</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$hex</span><span style="color: #339933;">,</span><span style="color: #000088;">$x</span><span style="color: #339933;">*</span><span style="color: #cc66cc;">6</span><span style="color: #339933;">+</span><span style="color: #cc66cc;">2</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$hex</span><span style="color: #339933;">,</span><span style="color: #000088;">$x</span><span style="color: #339933;">*</span><span style="color: #cc66cc;">6</span><span style="color: #339933;">+</span><span style="color: #cc66cc;">2</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
          <span style="color: #000088;">$string</span><span style="color: #339933;">.=</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$hex</span><span style="color: #339933;">,</span><span style="color: #000088;">$x</span><span style="color: #339933;">*</span><span style="color: #cc66cc;">6</span><span style="color: #339933;">+</span><span style="color: #cc66cc;">4</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$hex</span><span style="color: #339933;">,</span><span style="color: #000088;">$x</span><span style="color: #339933;">*</span><span style="color: #cc66cc;">6</span><span style="color: #339933;">+</span><span style="color: #cc66cc;">4</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
          <span style="color: #000088;">$string</span><span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;0000&quot;</span><span style="color: #339933;">;</span>
          <span style="color: #000088;">$string</span><span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;0000&quot;</span><span style="color: #339933;">;</span>
          <span style="color: #000088;">$color_name</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;pic2col <span style="color: #006699; font-weight: bold;">$x</span>&quot;</span><span style="color: #339933;">;</span>
          <span style="color: #000088;">$string</span><span style="color: #339933;">.=</span> <span style="color: #990000;">sprintf</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'%04x'</span><span style="color: #339933;">,</span><span style="color: #990000;">strlen</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$color_name</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">+</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
          <span style="color: #b1b100;">for</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$y</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span><span style="color: #000088;">$y</span><span style="color: #339933;">&lt;</span>strlen<span style="color: #009900;">&#40;</span><span style="color: #000088;">$color_name</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #000088;">$y</span><span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
               <span style="color: #000088;">$string</span><span style="color: #339933;">.=</span> <span style="color: #990000;">sprintf</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'%04x'</span><span style="color: #339933;">,</span><span style="color: #990000;">ord</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$color_name</span><span style="color: #009900;">&#123;</span><span style="color: #000088;">$y</span><span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>  
          <span style="color: #009900;">&#125;</span>
          <span style="color: #000088;">$string</span><span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;0000&quot;</span><span style="color: #339933;">;</span>     
     <span style="color: #009900;">&#125;</span>
     <span style="color: #b1b100;">return</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$string</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>You can find this function used in <strong><a href="http://www.pic2col.com/">pic2col</a></strong>, at the end of the color sequence you will find a link to download it as a <code>ACO</code> file.</p>
<p>I tested it in CS4 on XP and Vista and it works. Waiting for feedback.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.emanueleferonato.com/2009/09/15/understanding-and-creating-on-the-fly-photoshop-color-swatches-with-php/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Video tutorial: 5 detailed Adobe Photoshop killer tips</title>
		<link>http://www.emanueleferonato.com/2009/08/31/video-tutorial-5-detailed-adobe-photoshop-killer-tips/</link>
		<comments>http://www.emanueleferonato.com/2009/08/31/video-tutorial-5-detailed-adobe-photoshop-killer-tips/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 21:09:56 +0000</pubDate>
		<dc:creator>Emanuele Feronato</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.emanueleferonato.com/?p=1597</guid>
		<description><![CDATA[Did you ever want to master Adobe Photoshop?
In this video I unveil 5 killer tips I use almost every day.
Follow some simple steps and you will be able to:
1) Remove objects from a photo
2) Correct red eyes
3) Make a photo look older
4) Create realistic fog
5) Turn a night scene into a day one
All in a [...]]]></description>
			<content:encoded><![CDATA[<p>Did you ever want to master Adobe Photoshop?</p>
<p>In this video I unveil 5 killer tips I use almost every day.</p>
<p>Follow some simple steps and you will be able to:</p>
<p>1) Remove objects from a photo</p>
<p>2) Correct red eyes</p>
<p>3) Make a photo look older</p>
<p>4) Create realistic fog</p>
<p>5) Turn a night scene into a day one</p>
<p>All in a single video, quick and easy to understand<span id="more-1597"></span></p>
<p><object width="520" height="417"><param name="movie" value="http://www.youtube.com/v/4KAiF9mJqHU&#038;hl=it&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/4KAiF9mJqHU&#038;hl=it&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="520" height="417"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.emanueleferonato.com/2009/08/31/video-tutorial-5-detailed-adobe-photoshop-killer-tips/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Apply amazing filters to your photos with Virtual Photographer</title>
		<link>http://www.emanueleferonato.com/2009/04/29/apply-amazing-filters-to-your-photos-with-virtual-photographer/</link>
		<comments>http://www.emanueleferonato.com/2009/04/29/apply-amazing-filters-to-your-photos-with-virtual-photographer/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 11:28:47 +0000</pubDate>
		<dc:creator>Emanuele Feronato</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://www.emanueleferonato.com/?p=1198</guid>
		<description><![CDATA[If you are looking for a software that lets you instantly apply high quality, professional photographic styles to your digital images with just one click, then optikVerve Labs &#8216; virtualPhotographer is the software you need.
This free package comes in two versions: as a Photoshop plugin or as a standalone software.
I tested the PS plugin and [...]]]></description>
			<content:encoded><![CDATA[<p>If you are looking for a software that lets you instantly apply high quality, professional photographic styles to your digital images with just one click, then <a href="http://www.optikvervelabs.com/" target = "_blank">optikVerve Labs </a>&#8216; virtualPhotographer is the software you need.</p>
<p>This <strong>free</strong> package comes in two versions: as a Photoshop plugin or as a standalone software.</p>
<p>I tested the PS plugin and that&#8217;s what I think about it:</p>
<p>First, on the official site you will find virtualPhotographer is compatible with Photoshop CS3 and older</p>
<p><img src="/images/virtp01.jpg" alt="" /></p>
<p>But I successfully installed (and used) it on my <a href="http://www.emanueleferonato.com/2009/04/19/adobe-cs4-master-collection/">CS4 Master Collection</a> version.<span id="more-1198"></span></p>
<p>This is a clearly unretouched digital photo:</p>
<p><img src="/images/virtp02.jpg" alt="" /></p>
<p>and this is what you see when you launch the plugin</p>
<p><img src="/images/virtp03.jpg" alt="" /></p>
<p>Now you can work with more than 200 preset effect with just one click or creating (and saving) your own ones adjusting several parameters.</p>
<p>That&#8217;s what I got with one click:</p>
<p>This is &#8220;mountain&#8221; effect, one of my favourites</p>
<p><img src="/images/virtp04.jpg" alt="" /></p>
<p>Do you need some dramatic black and white? This is &#8220;Hollywood&#8221;</p>
<p><img src="/images/virtp05.jpg" alt="" /></p>
<p>Compare it with the standard &#8220;desaturate&#8221; adjustment people use to get a B/W image&#8230; </p>
<p><img src="/images/virtp06.jpg" alt="" /></p>
<p>no more playing with curves to get a decent B/W image&#8230;</p>
<p>Do you need a vintage image? &#8220;Less tungsten&#8221; is the one you need</p>
<p><img src="/images/virtp07.jpg" alt="" /></p>
<p>And I could continue for hours&#8230; so go to <a href="http://www.optikvervelabs.com/" target = "_blank">www.optikvervelabs.com</a> and download this amazing plugin.</p>
<p>Satisfaction guaranteed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.emanueleferonato.com/2009/04/29/apply-amazing-filters-to-your-photos-with-virtual-photographer/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Adobe CS4 Master Collection</title>
		<link>http://www.emanueleferonato.com/2009/04/19/adobe-cs4-master-collection/</link>
		<comments>http://www.emanueleferonato.com/2009/04/19/adobe-cs4-master-collection/#comments</comments>
		<pubDate>Sat, 18 Apr 2009 22:00:20 +0000</pubDate>
		<dc:creator>Emanuele Feronato</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[PROgramming]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://www.emanueleferonato.com/?p=1156</guid>
		<description><![CDATA[Do you want to know what do Adobe ships to you when you purchase the Adobe Creative Suite 4 Master Collection?
Here it is:

Five DVDs with the suite itself and one DVD with two hours of video footage about using CS4 softwares.
Let me remember you the software included:
InDesign CS4
Photoshop CS4 Extended
Illustrator CS4
Acrobat 9 Pro
Flash CS4 Professional
Dreamweaver [...]]]></description>
			<content:encoded><![CDATA[<p>Do you want to know what do Adobe ships to you when you purchase the <a href="http://www.adobe.com/products/creativesuite/mastercollection/" target = "_blank">Adobe Creative Suite 4 Master Collection</a>?</p>
<p>Here it is:</p>
<p><img src="/images/mastercs4.jpg" alt="Adobe CS4 Master Collection" /></p>
<p>Five DVDs with the suite itself and one DVD with two hours of video footage about using CS4 softwares.</p>
<p>Let me remember you the software included:</p>
<p>InDesign CS4<br />
Photoshop CS4 Extended<br />
Illustrator CS4<br />
Acrobat 9 Pro<br />
Flash CS4 Professional<br />
Dreamweaver CS4<br />
Fireworks CS4<br />
Contribute CS4<br />
After Effects CS4<br />
Adobe Premiere Pro CS4<br />
Soundbooth CS4<br />
Adobe OnLocation CS4<br />
Encore CS4<br />
Adobe Bridge CS4<br />
Adobe Device Central CS4<br />
Dynamic Link<br />
Version Cue CS4</p>
<p>I still haven&#8217;t installed it, so I can&#8217;t say, at the moment, if there is something made exclusively for the box retail edition, something the downloadable version does not have.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.emanueleferonato.com/2009/04/19/adobe-cs4-master-collection/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>When you are looking for a free software like Photoshop</title>
		<link>http://www.emanueleferonato.com/2009/03/03/when-you-are-looking-for-a-free-software-like-photoshop/</link>
		<comments>http://www.emanueleferonato.com/2009/03/03/when-you-are-looking-for-a-free-software-like-photoshop/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 21:35:18 +0000</pubDate>
		<dc:creator>Emanuele Feronato</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://www.emanueleferonato.com/?p=1013</guid>
		<description><![CDATA[There are thousands of posts around the web about free Photoshop alternatives.
Let me start from another point of view. There isn&#8217;t any free alternative to Photoshop. As far as I know, there isn&#8217;t any alternative at all to Photoshop.
But if you aren&#8217;t going to use all Photoshop features or you are somewhere around the world [...]]]></description>
			<content:encoded><![CDATA[<p>There are thousands of posts around the web about free Photoshop alternatives.</p>
<p>Let me start from another point of view. There isn&#8217;t any free alternative to Photoshop. As far as I know, there isn&#8217;t any alternative <em>at all</em> to Photoshop.</p>
<p>But if you aren&#8217;t going to use all Photoshop features or you are somewhere around the world and for some reason your Photoshop crashes and need a quick, somewhat powerful and free way to mess around with photos, colors and shapes, you may find this list useful.</p>
<p>They&#8217;re listed in alphabetical order, so the first isn&#8217;t necessarily the best.</p>
<p>But I tried to point you to a couple of softwares for each OS, such as Windows, OS X and Linux, and some interesting online tools.</p>
<p>I didn&#8217;t try personally all the softwares, so the description of each one is taken from their sites. I just tried to download them for free and install them on various machines. Screenshots too are taken from their sites.</p>
<p>If you used some of them, leave a review comment.<span id="more-1013"></span></p>
<p><strong><a target="_blank" href="http://www.artweaver.de/">Artweaver</a> &#8211; Windows</strong></p>
<p>Artweaver is a Windows Freeware program to simulate natural brush tools</p>
<p><img src="/images/alternatives01.jpg" alt="" /></p>
<p><strong><a target="_blank" href="http://www.chocoflop.com/home_en.html">ChocoFlop</a> &#8211; OS X</strong></p>
<p>ChocoFlop allows you to edit your photos or design stuff using <a href="http://www.apple.com/pro/photo/coreimage.html" target = "_blank">Apple&#8217;s CoreImage</a> technology. It takes advantage of the power of your graphics card. </p>
<p><img src="/images/alternatives02.jpg" alt="" /></p>
<p><strong><a target="_blank" href="http://www.cinepaint.org/">Cinepaint</a> &#8211; Linux, OS X</strong></p>
<p>CinePaint is a deep paint image retouching tool that supports higher color fidelity than ordinary painting tools.</p>
<p><img src="/images/alternatives03.jpg" alt="" /></p>
<p><strong><a target="_blank" href="http://fotoflexer.com/">FotoFlexer</a> &#8211; online</strong></p>
<p>FotoFlexer is the world&#8217;s most advanced online photo editor</p>
<p><img src="/images/alternatives04.jpg" alt="" /></p>
<p><strong><a target="_blank" href="http://www.gimp.org/">GIMP</a> &#8211; Windows</strong></p>
<p>GIMP is the GNU Image Manipulation Program. It is a freely distributed piece of software for such tasks as photo retouching, image composition and image authoring. It works on many operating systems, in many languages.</p>
<p>A photographer in my company choosed it as the best software for photo retouching&#8230; even better than Photoshop. I disagree, but I&#8217;m informing you about that.</p>
<p><img src="/images/alternatives05.jpg" alt="" /></p>
<p><strong><a target="_blank" href="http://www.koffice.org/krita/">Krita</a> &#8211; Linux</strong></p>
<p>Krita is a painting and image editing application for KOffice. Krita is part of KOffice since version 1.4. Krita contains both ease-of-use and fun features like guided painting (never before has it been so easy to airbrush a straight line!) and high-end features like support for 16 bit images, CMYK, L*a*b and even OpenEXR HDR images.</p>
<p><img src="/images/alternatives06.jpg" alt="" /></p>
<p><strong><a target="_blank" href="http://www.getpaint.net/index.html">Paint.NET</a> &#8211; Windows</strong></p>
<p>Paint.NET is free image and photo editing software for computers that run Windows. It features an intuitive and innovative user interface with support for layers, unlimited undo, special effects, and a wide variety of useful and powerful tools.</p>
<p><img src="/images/alternatives07.jpg" alt="" /></p>
<p><strong><a href="http://aviary.com/">Phoenix</a> &#8211; online</strong></p>
<p>All the Photoshop features you actually need, at a fraction of the price (but I managed to save a photo for free) </p>
<p><img src="/images/alternatives08.jpg" alt="" /></p>
<p><strong><a href="https://www.photoshop.com/express/landing.html">Photoshop Express</a> &#8211; online</strong></p>
<p>Adobe&#8217;s free photo editing tool</p>
<p><img src="/images/alternatives09.jpg" alt="" /></p>
<p><strong><a target="_blank" href="http://picasa.google.com/">Picasa</a> &#8211; Windows, Linux</strong></p>
<p>Google&#8217;s free photo editing tool</p>
<p><img src="/images/alternatives10.jpg" alt="" /></p>
<p><strong><a target="_blank" href="http://www.picnik.com/">Picnik</a> &#8211; online</strong></p>
<p>Does not require you to register to start playing with it</p>
<p><img src="/images/alternatives11.jpg" alt="" /></p>
<p><strong><a target="_blank" href="http://opensword.org/Pixen/">Pixen</a> &#8211; OS X</strong></p>
<p>Mainly designed from top to bottom for pixel artistsâ€”people who make low-resolution raster art like the sprites you see in old video games.</p>
<p><img src="/images/alternatives12.jpg" alt="" /></p>
<p><strong><a target="_blank" href="http://www.ne.jp/asahi/mighty/knight/index.html">Pixia</a> &#8211; Windows</strong></p>
<p>The original Japanese Edition was created and developed by the author, Isao Maruoka, but has also been aggressively raised by its fans, which makes this software to be quite unique and different from other tools.</p>
<p><img src="/images/alternatives13.jpg" alt="" /></p>
<p><strong><a target="_blank" href="http://www.pixlr.com/">Pixlr</a> &#8211; online</strong></p>
<p>Another one that does not require registration to mess with. Great interface in my opinion</p>
<p><img src="/images/alternatives14.jpg" alt="" /></p>
<p><strong><a target="_blank" href="http://www.pizap.com/">Pizap</a> &#8211; online</strong></p>
<p>Same as before, no registration required, but a bit limited compared to other online editors</p>
<p><img src="/images/alternatives15.jpg" alt="" /></p>
<p><strong><a target="_blank" href="http://www.queeky.com/">Queeky</a> &#8211; online</strong></p>
<p>Queeky is an online drawing community with unique drawing tools and creative users from all around the world.</p>
<p><img src="/images/alternatives16.jpg" alt="" /></p>
<p><strong><a href="http://www.splashup.com/">Splashup</a> &#8211; online</strong></p>
<p>Splashup, formerly Fauxto, is a powerful editing tool and photo manager. With all the features professionals use and novices want, it&#8217;s easy to use, works in real-time and allows you to edit many images at once.</p>
<p><img src="/images/alternatives17.jpg" alt="" /></p>
<p><strong><a href="http://www.sumopaint.com/">SUMO Paint</a> &#8211; online</strong></p>
<p>SUMO Paint offers professional and easy to use tools for creating and editing images within a browser. SUMO Paint is a free image editing software that gives you the opportunity to create, edit and comment images online with powerful tools and layer support.</p>
<p><img src="/images/alternatives18.jpg" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.emanueleferonato.com/2009/03/03/when-you-are-looking-for-a-free-software-like-photoshop/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Photoshop files to make your own key icons</title>
		<link>http://www.emanueleferonato.com/2008/11/07/photoshop-files-to-make-your-own-key-icons/</link>
		<comments>http://www.emanueleferonato.com/2008/11/07/photoshop-files-to-make-your-own-key-icons/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 20:57:16 +0000</pubDate>
		<dc:creator>Emanuele Feronato</dc:creator>
				<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://www.emanueleferonato.com/?p=637</guid>
		<description><![CDATA[Today I needed some key icons for developing an help window in a project I am working on and I stumbed upon 104 Standard PC Keyboard Key Icons.
These icons are free for personal and commercial uses but I needed something a bit different (and I have some keys on my keyboard that aren&#8217;t listed there) [...]]]></description>
			<content:encoded><![CDATA[<p>Today I needed some key icons for developing an help window in a project I am working on and I stumbed upon <a target = "_blank" href="http://alanwho.com/icons/104-standard-pc-keyboard-keys-icon-set/">104 Standard PC Keyboard Key Icons</a>.</p>
<p>These icons are free for personal and commercial uses but I needed something a bit different (and I have some keys on my keyboard that aren&#8217;t listed there) so I decided to draw my own icons.</p>
<p>The result worked pretty well in my opinion</p>
<p><img src="/images/keys_live_ex.jpg" alt="" /></p>
<p>so I decided to release the layered PSD file to let you make your own keys.</p>
<p>In the PSD you will find a white and a black key, ready to be customized.</p>
<p><img src="/images/keys.jpg" alt="" /></p>
<p>If you manage to make an entire set of icons using these files, let me know and I will be glad to add them to the blog.</p>
<p><a href="/downloads/keys.zip">Download the PSD files</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.emanueleferonato.com/2008/11/07/photoshop-files-to-make-your-own-key-icons/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Another vintage color action for Photoshop</title>
		<link>http://www.emanueleferonato.com/2008/07/28/another-vintage-color-action-for-photoshop/</link>
		<comments>http://www.emanueleferonato.com/2008/07/28/another-vintage-color-action-for-photoshop/#comments</comments>
		<pubDate>Mon, 28 Jul 2008 11:25:28 +0000</pubDate>
		<dc:creator>Emanuele Feronato</dc:creator>
				<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://www.emanueleferonato.com/?p=358</guid>
		<description><![CDATA[I am always looking for new ways to simulate vintage colors.
I already published Vintage colors effect action for Photoshop and Create a vintage photo effect in Photoshop but I decided to turn into an action this tutorial from CreateBlog.
This action can convert a photo like this one (made by Tommy Huynh)

into this one

in a matter [...]]]></description>
			<content:encoded><![CDATA[<p>I am always looking for new ways to simulate vintage colors.</p>
<p>I already published <a href="http://www.emanueleferonato.com/2007/01/26/vintage-colors-effect-action-for-photoshop/">Vintage colors effect action for Photoshop</a> and <a href="http://www.emanueleferonato.com/2007/10/15/create-a-vintage-photo-effect-in-photoshop/">Create a vintage photo effect in Photoshop</a> but I decided to turn into an action this <a href="http://www.createblog.com/tutorials/tutorial.php?id=633" target = "_blank">tutorial</a> from <a target = "_blank" href="http://www.createblog.com/">CreateBlog</a>.</p>
<p>This action can convert a photo like this one (made by <a target = "_blank" href="http://tommyimages.com/">Tommy Huynh</a>)</p>
<p><img src="/images/th_before.jpg" alt="Before" /></p>
<p>into this one</p>
<p><img src="/images/th_after.jpg" alt="Before" /></p>
<p>in a matter of seconds.</p>
<p><a href="/downloads/TriquiVintage.zip">Download the action</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.emanueleferonato.com/2008/07/28/another-vintage-color-action-for-photoshop/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Photoshop action to create an arcade stone background</title>
		<link>http://www.emanueleferonato.com/2007/11/08/photoshop-action-to-create-an-arcade-stone-background/</link>
		<comments>http://www.emanueleferonato.com/2007/11/08/photoshop-action-to-create-an-arcade-stone-background/#comments</comments>
		<pubDate>Wed, 07 Nov 2007 22:19:49 +0000</pubDate>
		<dc:creator>Emanuele Feronato</dc:creator>
				<category><![CDATA[Game design]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://www.emanueleferonato.com/2007/11/08/photoshop-action-to-create-an-arcade-stone-background/</guid>
		<description><![CDATA[Today I was playing a bit with Photoshop to create a stone background for a one-week game I am developing for the experiment.
I wanted something random, with a style that reminds old style arcades.
I found this tutorial and I modified it to fit to my needs.
Then I developed an action to optimize and speed up [...]]]></description>
			<content:encoded><![CDATA[<p>Today I was playing a bit with Photoshop to create a stone background for a one-week game I am developing for <a href="http://www.emanueleferonato.com/2007/10/28/experiment-monetizing-a-flash-game/">the experiment</a>.</p>
<p>I wanted something random, with a style that reminds old style arcades.</p>
<p>I found <a target = "_blank" href="http://www.idigitalemotion.com/tutorials/guest/stonewall/stonewall.html">this tutorial</a> and I modified it to fit to my needs.</p>
<p>Then I developed an action to optimize and speed up the entire process.</p>
<p>This is the result of the action, obviously always random.</p>
<p><img src="/images/stone.jpg" alt="Stone action for Photoshop" /></p>
<p>It&#8217;s not a state-of-the-art action but is what I need, and you can custom some level styles to use it in a profitable way.</p>
<p><a href="/downloads/arcadestone.zip">Download the action</a> and give it a try</p>
]]></content:encoded>
			<wfw:commentRss>http://www.emanueleferonato.com/2007/11/08/photoshop-action-to-create-an-arcade-stone-background/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Create a vintage photo effect in Photoshop</title>
		<link>http://www.emanueleferonato.com/2007/10/15/create-a-vintage-photo-effect-in-photoshop/</link>
		<comments>http://www.emanueleferonato.com/2007/10/15/create-a-vintage-photo-effect-in-photoshop/#comments</comments>
		<pubDate>Mon, 15 Oct 2007 11:09:00 +0000</pubDate>
		<dc:creator>Emanuele Feronato</dc:creator>
				<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://www.emanueleferonato.com/2007/10/15/create-a-vintage-photo-effect-in-photoshop/</guid>
		<description><![CDATA[Today I was playing with Photoshop looking for some interesting photo effect and I found a quick and easy way to convert a modern photo in a vintage one.
I have already created an action to simulate this effect in Vintage colors effect action for Photoshop, but I am sure you&#8217;ll like this effec too.
Follow me [...]]]></description>
			<content:encoded><![CDATA[<p>Today I was playing with Photoshop looking for some interesting photo effect and I found a quick and easy way to convert a modern photo in a vintage one.</p>
<p>I have already created an action to simulate this effect in <a href="http://www.emanueleferonato.com/2007/01/26/vintage-colors-effect-action-for-photoshop/">Vintage colors effect action for Photoshop</a>, but I am sure you&#8217;ll like this effec too.</p>
<p>Follow me through this very easy tutorial and you&#8217;ll find by yourself how easy is to achieve this effect.</p>
<p>1) Open your photo</p>
<p><img src="/images/vint01.jpg" alt="Photoshop Vintage effect" /><span id="more-139"></span></p>
<p>2) Set your foreground and background colors respectively to #ff0000 and #00ff00</p>
<p><img src="/images/vint02.jpg" alt="Photoshop Vintage effect" /></p>
<p>3) Duplicate the photo layer</p>
<p><img src="/images/vint03.jpg" alt="Photoshop Vintage effect" /></p>
<p>4) With the newly created layer use a Gradient Map</p>
<p><img src="/images/vint04.jpg" alt="Photoshop Vintage effect" /></p>
<p>5) On the same layer, use Blending Options</p>
<p><img src="/images/vint05.jpg" alt="Photoshop Vintage effect" /></p>
<p>6) Select Blend Mode to Color and Opacity to 50%</p>
<p><img src="/images/vint06.jpg" alt="Photoshop Vintage effect" /></p>
<p>7) Flatten the image</p>
<p><img src="/images/vint07.jpg" alt="Photoshop Vintage effect" /></p>
<p>8) Apply an Add Noise filter to the only layer you should have</p>
<p><img src="/images/vint08.jpg" alt="Photoshop Vintage effect" /></p>
<p>9) Set the filter with 2% Gaussian Monochromatic values</p>
<p><img src="/images/vint09.jpg" alt="Photoshop Vintage effect" /></p>
<p>10) Enjoy the result</p>
<p><img src="/images/vint10.jpg" alt="Photoshop Vintage effect" /></p>
<p>You may need to play with the last two steps values in order to fit the effect to your needs.</p>
<p>And for the laziest of you, I made an action that does the task automatically! <a href="/downloads/feronato_vintage.zip">Download the action</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.emanueleferonato.com/2007/10/15/create-a-vintage-photo-effect-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>52</slash:comments>
		</item>
		<item>
		<title>Photoshop action to create an outer space scene</title>
		<link>http://www.emanueleferonato.com/2007/06/06/95/</link>
		<comments>http://www.emanueleferonato.com/2007/06/06/95/#comments</comments>
		<pubDate>Wed, 06 Jun 2007 16:16:22 +0000</pubDate>
		<dc:creator>Emanuele Feronato</dc:creator>
				<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://www.emanueleferonato.com/2007/06/06/95/</guid>
		<description><![CDATA[The net is full of tutorials about creating an outer space image, but every one of them, in order to achieve good results, require the user (you) to manually draw stars or adjust some parameters.
The real challenge is to code an action that creates an outer space without any drawing by the user.
The result I [...]]]></description>
			<content:encoded><![CDATA[<p>The net is full of tutorials about creating an outer space image, but every one of them, in order to achieve good results, require the user (you) to manually draw stars or adjust some parameters.</p>
<p>The real challenge is to code an action that creates an outer space without any drawing by the user.</p>
<p>The result I got, is a quite realistic outer space, and every time I play the action I get a different image.</p>
<p>Look at the examples:</p>
<p><img src="/images/space1.jpg" alt="Emanuele Feronato's outer space" /><span id="more-95"></span></p>
<p><img src="/images/space2.jpg" alt="Emanuele Feronato's outer space" /></p>
<p><img src="/images/space3.jpg" alt="Emanuele Feronato's outer space" /></p>
<p><img src="/images/space4.jpg" alt="Emanuele Feronato's outer space" /></p>
<p><img src="/images/space5.jpg" alt="Emanuele Feronato's outer space" /></p>
<p>As you can see, results are quite good, especially for game design.</p>
<p><a href="/downloads/Outer Space by Emanuele Feronato.zip">Download the action</a> and run into Photoshop.</p>
<p>I developed it with CS2 and I cannot test with any other platform so if you have a different version and the action runs, please let me know.</p>
<p>The action stops itself when you can change the image size and when you can change the <strong>background</strong> color of the nebulas you will created.</p>
<p>Enjoy it and let&#8217;s start coding space games&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.emanueleferonato.com/2007/06/06/95/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
	</channel>
</rss>
