<?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>The Darkroom &#187; Tips &amp; Tutorials</title>
	<atom:link href="http://www.reallyjapan.com/blog/category/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.reallyjapan.com/blog</link>
	<description>Photography &#38; Japan</description>
	<lastBuildDate>Thu, 16 Dec 2010 07:24:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>iPhone friendly Pixelpost</title>
		<link>http://www.reallyjapan.com/blog/tutorials/iphone-friendly-pixelpost/</link>
		<comments>http://www.reallyjapan.com/blog/tutorials/iphone-friendly-pixelpost/#comments</comments>
		<pubDate>Tue, 19 May 2009 02:39:45 +0000</pubDate>
		<dc:creator>Ruben</dc:creator>
				<category><![CDATA[Headline]]></category>
		<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[pixelpost]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.reallyjapan.com/blog/?p=597</guid>
		<description><![CDATA[<p></p>
<p><span style="color: #800000;"><strong>UPDATE: I added the lines to recognize Android, iPod Touch and Palm WebOS!</strong></span></p>
<p>Chris, a reader of this website (and a cool photographer, check his website Intelligent Cloud), asked&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.reallyjapan.com/blog/wp-content/uploads/2009/05/iphone.jpg" rel="lightbox[597]"><img class="alignleft size-full wp-image-601" title="iphone" src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/05/iphone.jpg" alt="iphone" width="263" height="438" /></a></p>
<p><span style="color: #800000;"><strong>UPDATE: I added the lines to recognize Android, iPod Touch and Palm WebOS!</strong></span></p>
<p>Chris, a reader of this website (and a cool photographer, check his website <a href="http://www.intelligentcloud.org/">Intelligent Cloud</a>), asked me how I did to setup an <strong>iPhone</strong> friendly version of <a href="http://www.reallyjapan.com/">ReallyJapan Photoblog</a> and automatically redirect the users with an <strong>iPhone</strong> to this website.</p>
<p>As you know, <strong>ReallyJapan</strong> is using <a href="http://www.pixelpost.org" target="_blank">Pixelpost</a>, a free photo blog application. <strong>Pixelpost</strong> has many <a href="http://www.reallyjapan.com/blog/tutorials/10-great-pixelpost-templates/" target="_blank">great templates</a>, and one of them, <strong>Hoo</strong> is an <strong>iPhone optimized</strong> template.</p>
<p>The problem is that in Pixelpost control panel <strong>you can select only one template</strong>, and there&#8217;s no option to specify one template for certain users and a different one for the others.</p>
<p>So, while the Hoo template is a great solution for iPhone users, if you configure Pixelpost to use this template, all your users will see the Hoo template, no matter if they&#8217;re using iPhone, Internet Explorer, Firefox or a <span style="color: #003300;"><em><strong>cyberdeck Ono-Sendai</strong></em></span> (in that case they&#8217;ll probably just look to the code).</p>
<p>So, what do we need to do?<br />
Simple: <strong>When someone visits our Pixelpost photoblog, check if they&#8217;re using iPhone, and just in that case tell Pixelpost to use Hoo template instead of the one we selected in the control panel.</strong></p>
<p>It requires some changes in a php file, but it&#8217;s very simple. Let&#8217;s start:</p>
<ol>
<li><a href="http://www.reallyjapan.com/blog/tutorials/10-great-pixelpost-templates/">Download Hoo template</a>, <strong>unzip it</strong> and <strong>upload  the folder</strong> in your web host (/template/)</li>
<li>Now we need to <strong>edit the index.php of your Pixelpost installation</strong> (/index.php) to specify the Hoo template just for iPhone users visiting your photoblog.<br />
<span style="text-decoration: underline;"><strong><span style="color: #800000;">Remember: Do a backup or something. It&#8217;s better safe than sorry if something goes wrong!<br />
</span></strong></span><br />
<strong>A. </strong>First thing to do is to <strong>Search and Replace All</strong> the text <span style="color: #008080;"><strong>$cfgrow['template'] </strong></span>to <span style="color: #008080;"><strong>$template_dir</strong></span>.<br />
$cfgrow['template'] is the variable where the name of the selected template (the one you chose on the Pixelpost control panel) is stored.</p>
<p><strong> B.</strong> Now <strong>Search the file</strong> for this text:  <strong><span style="color: #008080;">// get config</span></strong><br />
You&#8217;ll find this code:</p>
<p>// get config<br />
if($cfgrow = sql_array(&#8220;SELECT * FROM &#8220;.$pixelpost_db_prefix.&#8221;config&#8221;))<br />
{<br />
$upload_dir = $cfgrow['imagepath'];<br />
}else{<br />
$extra_message= &#8220;Coming Soon. Not Installed Yet. Cause #1&#8243;;<br />
show_splash($extra_message,&#8221;templates&#8221;);</p>
<p>}</p>
<p>What does it do? Ok, basically it&#8217;s <strong>reading the configuration</strong> of your Pixelpost installation from the database (you know all the stuff you selected in Pixelpost control panel like paths, name of the blog and.. the template).<br />
The first case of the IF statement means Pixelpost has been installed while the ELSE case means (as you can see in the extra_message) that.. well, it&#8217;s not installed yet.</p>
<p>So, let&#8217;s add some code here (blue text):</p>
<p>// get config<br />
if($cfgrow = sql_array(&#8220;SELECT * FROM &#8220;.$pixelpost_db_prefix.&#8221;config&#8221;))<br />
{</p>
<div id="_mcePaste"><strong><span style="color: #008080;">if (stristr($_SERVER['HTTP_USER_AGENT'], &#8216;Android&#8217;) ||</span></strong></div>
<div id="_mcePaste"><strong><span style="color: #008080;">stristr($_SERVER['HTTP_USER_AGENT'],&#8217;webOS&#8217;) ||</span></strong></div>
<div id="_mcePaste"><strong><span style="color: #008080;">stristr($_SERVER['HTTP_USER_AGENT'],&#8217;iPhone&#8217;) ||</span></strong></div>
<div id="_mcePaste"><strong><span style="color: #008080;">stristr($_SERVER['HTTP_USER_AGENT'],&#8217;iPod&#8217;)</span></strong></div>
<div id="_mcePaste"><strong><span style="color: #008080;">) {</span></strong></div>
<p><strong><span style="color: #008080;"> $template_dir=&#8221;hoo&#8221;;<br />
}else{<br />
$template_dir=$cfgrow['template'];<br />
}</span></strong></p>
<p>$upload_dir = $cfgrow['imagepath'];<br />
}else{<br />
$extra_message= &#8220;Coming Soon. Not Installed Yet. Cause #1&#8243;;<br />
show_splash($extra_message,&#8221;templates&#8221;);<br />
}</p>
<p>Basically: If Pixelpost has been installed (IF case 1), check if the <strong>user agent </strong>of the visitor is <strong>iPhone, iPod, Android or webOS</strong>.<br />
In that case set <strong>$template_dir </strong>to<strong> &#8216;hoo&#8217;</strong> (the hoo template, in the folder /template/hoo on your webhosting).<br />
Otherwise set <strong>$template_dir to $cfgrow['template']</strong> (the default template you selected on Pixelpost control panel).</p>
<p><strong>C.</strong> Save the file and..</li>
</ol>
<p><strong>That&#8217;s it!</strong><br />
From now on the iPhone users will see the <strong>Hoo template</strong> while all the other users will see the default template.</p>
<p>If you have any question please write a comment!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reallyjapan.com/blog/tutorials/iphone-friendly-pixelpost/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>10 Great Pixelpost Templates</title>
		<link>http://www.reallyjapan.com/blog/tutorials/10-great-pixelpost-templates/</link>
		<comments>http://www.reallyjapan.com/blog/tutorials/10-great-pixelpost-templates/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 07:09:55 +0000</pubDate>
		<dc:creator>Ruben</dc:creator>
				<category><![CDATA[Headline]]></category>
		<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[pixelpost]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://www.reallyjapan.com/blog/?p=581</guid>
		<description><![CDATA[Check out 10 great Pixelpost templates.]]></description>
			<content:encoded><![CDATA[<div>
<div id="ectocontent">
<div>
<p>What’s great about <a href="http://www.pixelpost.org/" target="_blank">Pixelpost</a> is the wide selection of <a href="http://www.pixelpost.org/extend/templates/" target="_blank">templates</a> and <a href="http://www.pixelpost.org/extend/addons/" target="_blank">addons</a> available.. and if you’re not satisfied, creating a new cool template or a useful addon is relatively easy.</p>
<p>So, let’s take a look to the best Pixelpost templates out there.</p>
<p><strong>Dark Matter<br />
<span style="font-weight: normal;">Dark Matter is a great theme with some cool fancy Ajax animations and a carousel effect to browse your photos.<br />
You can find a Free version of this template and a Pro version with various extras (it’s $49.95). And yes, </span><a href="http://www.reallyjapan.com/" target="_blank"><span style="font-weight: normal;">ReallyJapan</span></a><span style="font-weight: normal;"> is using a customized version of the free version.</span></strong></p>
<p><strong><img id="4161886889487505" src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/04/1.jpg" alt="1.jpg" width="580" height="536" /></strong></p>
<p><a href="http://demo-free.darkmatter-template.com/" target="_blank">Free version Demo</a><br />
<a href="http://www.i-marco.nl/photoblog/" target="_blank">Pro version Demo</a><br />
<a href="http://darkmatter-template.com/" target="_blank">Dark Matter’s Home Page<br />
</a><a href="http://www.pixelpost.org/extend/templates/dark-matter/" target="_blank">Download Dark Matter</a></p>
<p><strong>Switchy<br />
<span><span style="font-weight: normal;">Switchy is an interesting template that changes its layout according to the orientation of the photo.<br />
</span><span style="font-weight: normal;"> The layout is very clean</span></span></strong> and easy to customize.<br />
<img id="9604380212258548" src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/04/sunset-pixelpost-demo.jpg" alt="Sunset • Pixelpost Demo.jpg" width="580" height="599" /></p>
<p><a href="http://pixelpost.kevincrafts.com/?newtemplate=switchy" target="_blank">Check the demo here</a><br />
<a href="http://www.pixelpost.org/extend/templates/switchy/" target="_blank">Download Switchy</a></p>
<p><strong>Pixelfy<br />
<span><span style="font-weight: normal;">Very clean and simple layout that let’s your photograph speek for it self. It wraps around both big and small images.<br />
</span> <img id="8002684428356588" src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/04/skitched-20090427-153430.jpg" alt="skitched-20090427-153430.jpg" width="580" height="518" /><br />
</span></strong></p>
<p><a href="http://www.pixelfy.com/" target="_blank">Check the demo here<br />
</a><a href="http://www.pixelpost.org/extend/templates/pixelfy/" target="_blank">Download Pixelfy</a></p>
<p><strong>Delicious<br />
<span><span style="font-weight: normal;">Delicious is a fresh and tastey photoblogging template for Pixelpost. It’s a very nice theme and I’ve used it for the first version of </span><a href="http://www.reallyjapan.com/" target="_blank"><span style="font-weight: normal;">ReallyJapan.com</span></a><span style="font-weight: normal;">.<br />
</span> <img id="5150944793131202" src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/04/x2-1.jpg" alt="x2-1.jpg" width="580" height="447" /><br />
</span></strong></p>
<p><a href="http://photoniacs.com/index.php" target="_blank">Check the demo here</a><br />
<a href="http://www.andrewor.com/delicious_raz_v025" target="_blank">Download the updated version by Andrew here</a></p>
<p><strong>The World in 35mm<br />
</strong><span>An extremely clean, modern and simple template for pixelpost you’re going to love, I do. One of the best IMO.</span><img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/04/uofa-liquors-the-world-in-35mm-joe-roback-2007-2009-all-rights-reserved-1.jpg" alt="UofA Liquors | The World in 35mm | © Joe Roback, 2007-2009. All Rights Reserved.-1.jpg" width="580" height="497" /></p>
<p><a href="http://theworldin35mm.org/" target="_blank">Try the demo here<br />
</a><a href="http://www.pixelpost.org/extend/templates/the-world-in-35mm/" target="_blank">Download from here</a></p>
<p><strong>Pixelution<br />
<span style="font-weight: normal;">If you want a template with an unusual layout and some interesting features, check this out.</span></strong></p>
<p><strong><img id="5891162503976375" src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/04/tree-reflections-pixelution.jpg" alt="Tree Reflections • Pixelution.jpg" width="580" height="417" /></strong></p>
<p><a href="http://pixelution.kevincrafts.com/" target="_blank">Check the demo here</a><br />
<a href="http://www.pixelpost.org/extend/templates/pixelution-template/" target="_blank">Download Pixelution</a></p>
<p><strong>Hoo! (Pixelpost template for iPhone)<br />
<span><span style="font-weight: normal;">Well, have you ever visited </span><a href="http://www.reallyjapan.com/" target="_blank"><span style="font-weight: normal;">ReallyJapan.com</span></a><span style="font-weight: normal;"> using your iPhone? Well, you should, because it uses this template to offer you an iPhone customized version.<br />
</span><span style="font-weight: normal;"> Now, you need to mess a little with php and your pixelpost installation to have the browser detect if you’re using an iPhone or a regular browser and switch the template… It’s not hard, but it’s not extremely easy.. I did it and maybe, if someone is interested, I could write a small tutorial on how to use this template in the future..<br />
</span> <img id="21704545919783413" src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/04/2x.jpg" alt="2x.jpg" width="200" height="370" /><br />
</span></strong></p>
<p><a href="http://www.pixelpost.org/extend/templates/hoo-pixelpost-template-for-iphone/" target="_blank">Download Hoo</a></p>
<p><strong>Focus<br />
<span><span style="font-weight: normal;">A simple, dark and clean template.<br />
</span> <img id="187636929564178" src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/04/demo-for-focus-template-your-are-viewing-the-new-template-focus-301-beta.jpg" alt="Demo for FOCUS template _._ Your are viewing the new template focus 3.0.1 beta.jpg" width="580" height="391" /><br />
<a href="http://focus.pixelxdesign.com/demo/" target="_blank"><span style="font-weight: normal;">Check the demo here<br />
</span> </a><a href="http://www.pixelpost.org/extend/templates/lafaille-template/" target="_blank"><span style="font-weight: normal;">Download Focus</span></a></span></strong></p>
<p><strong><a href="http://www.pixelpost.org/extend/templates/lafaille-template/" target="_blank"> </a></strong><strong>Photographer’s Template<br />
</strong><span>A template geared more towards a self promotional site for photographers.</span></p>
<p><span><img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/04/bad-arrow-photography-concert-and-musician-photography-9085000403.jpg" alt="bad arrow photography __ Concert and Musician Photography __ 908.500.0403.jpg" width="580" height="426" /></span></p>
<p><strong><span><a href="http://www.badarrow.com/photography/" target="_blank"><span style="font-weight: normal;">Try the demo here</span><br />
</a></span></strong><span><a href="http://www.pixelpost.org/extend/templates/photographers-template/" target="_blank">Download the template</a></span></p>
<p><strong>Raia<br />
<span style="font-weight: normal;">A very nice template with a new, fresh web2.0 look.</span></strong></p>
<p><img id="13771682558581233" src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/04/raia-demo.jpg" alt="Raia demo.jpg" width="580" height="496" /><br />
<a href="http://www.ubbedall.dk/Raia" target="_blank">Try the demo here</a><br />
<a href="http://www.pixelpost.org/extend/templates/raia-template/" target="_blank">Download Raia</a></div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.reallyjapan.com/blog/tutorials/10-great-pixelpost-templates/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Guide to PhotoBlogging &#8211; Introduction</title>
		<link>http://www.reallyjapan.com/blog/tutorials/guide-to-photoblogging-introduction/</link>
		<comments>http://www.reallyjapan.com/blog/tutorials/guide-to-photoblogging-introduction/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 04:01:19 +0000</pubDate>
		<dc:creator>Ruben</dc:creator>
				<category><![CDATA[Headline]]></category>
		<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[photo blogging]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.reallyjapan.com/blog/tutorials/guide-to-photoblogging-introduction/</guid>
		<description><![CDATA[<p style="margin: 0.0px 0.0px 15.0px 0.0px; line-height: 21.0px; font: 12.0px Arial; color: #333333"><span style="font-weight: 800;">Introduction</span></p>
<p style="margin: 0.0px 0.0px 15.0px 0.0px; line-height: 21.0px; font: 12.0px Arial; color: #333333"><span style="font-weight: 800;"><span style="font-weight: normal;">I&#8217;ve started <strong><span style="color: #4e78a2; text-decoration: underline;"><span style="font-weight: normal;">Really Japan Photo</span></span></strong></span></span>&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p style="margin: 0.0px 0.0px 15.0px 0.0px; line-height: 21.0px; font: 12.0px Arial; color: #333333"><span style="font-weight: 800;">Introduction<img class="alignleft" src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/03/guide1.jpg" alt="guide1.jpg" width="300" height="300" /></span></p>
<p style="margin: 0.0px 0.0px 15.0px 0.0px; line-height: 21.0px; font: 12.0px Arial; color: #333333"><span style="font-weight: 800;"><span style="font-weight: normal;">I&#8217;ve started <strong><a style="background-color: rgba(0, 0, 0, 0); color: #3C78A7; font-family: Arial; font-size: 12px; line-height: 21px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; pointer-events: auto; text-indent: 0px; zoom: 1; clip-rule: nonzero; flood-color: #000000; flood-opacity: 1; lighting-color: #FFFFFF; stop-color: #000000; stop-opacity: 1; color-interpolation: srgb; color-interpolation-filters: linearrgb; color-rendering: auto; fill: #000000; fill-opacity: 1; fill-rule: nonzero; image-rendering: auto; shape-rendering: auto; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 4; stroke-opacity: 1; text-rendering: auto; alignment-baseline: auto; baseline-shift: baseline; dominant-baseline: auto; text-anchor: start; writing-mode: lr-tb; glyph-orientation-horizontal: 0deg; glyph-orientation-vertical: auto;" href="http://www.reallyjapan.com/"><span style="color: #4e78a2; text-decoration: underline;"><span style="font-weight: normal;">Really Japan Photo Blog</span></span></a></strong> and uploaded the very first photo about one year ago.<br />
At the beginning I wasn&#8217;t very sure to be able to update the photo blog often, it was not the first time I was starting a blog, but all the previous attempts ended up with failure, after few months.</span></span></p>
<p style="margin: 0.0px 0.0px 15.0px 0.0px; line-height: 21.0px; font: 12.0px Arial; color: #333333"><span style="font-weight: 800;"><span style="font-weight: normal;">Fortunately that has not been the case of</span> <strong>ReallyJapan</strong><span style="font-weight: normal;">.</span></span></p>
<p style="margin: 0.0px 0.0px 15.0px 0.0px; line-height: 21.0px; font: 12.0px Arial; color: #333333"><span style="font-weight: 800;"><span style="font-weight: normal;">A lot has happened in this year of</span> <strong>ReallyJapan</strong><span style="font-weight: normal;">. I&#8217;ve learnt many things on photography, met many great photographers, looked at some incredible shots on the web.. and I think if I didn&#8217;t start photoblogging, I would have lost many opportunities.</span></span></p>
<p style="margin: 0.0px 0.0px 15.0px 0.0px; line-height: 21.0px; font: 12.0px Arial; color: #333333">So, after 1 year of photoblogging, I thought it would be cool to write some kind of <strong>Guide to Photoblogging.<br />
</strong> But, I&#8217;m going to tell you a secret: I&#8217;m not an amazing photographer or a super blogger, my website is not making trillions of visitors neither, so don&#8217;t have huge expectations..</p>
<p style="margin: 0.0px 0.0px 15.0px 0.0px; line-height: 21.0px; font: 12.0px Arial; color: #333333">Anyway, I hope this Guide will help all of you who are considering to open a photo blog!</p>
<p style="margin: 0.0px 0.0px 15.0px 0.0px; line-height: 21.0px; font: 12.0px Arial; color: #333333">
<p style="margin: 0.0px 0.0px 15.0px 0.0px; line-height: 21.0px; font: 12.0px Arial; color: #333333"><span style="font-weight: 800;">What is a photoblog?</span></p>
<p style="margin: 0.0px 0.0px 15.0px 0.0px; line-height: 21.0px; font: 12.0px Arial; color: #333333"><strong><span style="font-weight: normal;">A photoblog (a.k.a. photolog or phlog) is a form of photo sharing and publishing in the format of a blog, but differentiated by the predominant use of and focus on photographs rather than text.</span></strong></p>
<p style="margin: 0.0px 0.0px 15.0px 0.0px; line-height: 21.0px; font: 12.0px Arial; color: #333333"><strong><strong>Why photoblogging?</strong></strong></p>
<p style="margin: 0.0px 0.0px 15.0px 0.0px; line-height: 21.0px; font: 12.0px Arial; color: #333333"><strong><span style="font-weight: normal;">There could be many reasons to start your own photoblog. You may want to show your amazing works to people from all around the world, and consequently make a lot of money with advertising &amp; sales of your photography. Honestly, in that case you&#8217;re going to have rough times ahead, good luck.</span></strong></p>
<p style="margin: 0.0px 0.0px 15.0px 0.0px; line-height: 21.0px; font: 12.0px Arial; color: #333333"><strong><span style="font-weight: normal;">But if your demands are a little more modest, there are many positive points on opening a photo blog.</span></strong></p>
<p style="margin: 0.0px 0.0px 15.0px 0.0px; line-height: 21.0px; font: 12.0px Arial; color: #333333"><strong><strong>Top Advantages of starting a Photo Blog</strong></strong></p>
<ul style="list-style-type: disc">
<li style="line-height: 21.0px; font: 12.0px Arial; color: #333333"><strong><strong>It&#8217;s a great way to keep you constantly motivated.<br />
</strong><span style="font-weight: normal;">I opened</span> <a href="http://www.reallyjapan.com/"><span style="color: #4e78a2; text-decoration: underline;"><span style="font-weight: normal;">Really Japan Photo Blog</span></span></a> <span style="font-weight: normal;">just few months after buying my first DSLR. The main reason? I wanted to <strong>learn how to take photos</strong>, and I was inspired by many cool photo bloggers who were sharing their photos on line. As soon as people started visiting my photo blog and writing some comments on the photos I knew I had to post something slightly better the next day.. the day after, and the day after that.<br />
So.. yes, a photo blog is a</span> great way to keep you constantly motivated <span style="font-weight: normal;">to take</span> new photos <span style="font-weight: normal;">or</span> process the ones you have.</strong></li>
<li style="line-height: 21.0px; font: 12.0px Arial; color: #333333"><strong><strong>Networking</strong><span style="font: 12.0px Lucida Grande"><strong><br />
</strong></span><span style="font-weight: normal;">Some months ago I had dinner with a very nice guy from Spain visiting Tokyo. I&#8217;ve never seen him before that day. Well, he&#8217;s a photo blogger,</span> <a href="http://www.desenfocado.com/index.php"><span style="color: #4e78a2; text-decoration: underline;"><span style="font-weight: normal;">Guillermo &#8211; Desenfocado</span></span></a><span style="font-weight: normal;">, and I&#8217;ve met him through photo blogging. I&#8217;ve met many other photo bloggers, exchanged emails, ideas, and tips on photography.<br />
<strong>If you start visiting and commenting other photo blogs, they&#8217;ll surely do the same and they&#8217;ll visit and comment yours.</strong></span><span style="font: 12.0px Lucida Grande"><strong><br />
</strong></span><span style="font-weight: normal;">At the same time, keep in mind that the majority of people visiting your blog will now write comments, but <strong>they&#8217;ll surely keep following you</strong>. Sometimes they will write you emails, saying you that they like your photos. Then who knows, maybe some of these people will become real friends, or maybe.. you&#8217;ll find great job opportunities!</span></strong></li>
<li style="line-height: 21.0px; font: 12.0px Arial; color: #333333"><strong><strong>Learn from other photo bloggers</strong><span style="font: 12.0px Lucida Grande"><strong><br />
</strong></span><span style="font-weight: normal;">There are many amazing talented photo bloggers (well.. photographers) on Internet. Besides writing comments on their photos, look to their photos! Usually, if they use Pixelpost, or Flickr, you can see the <strong>EXIF informations</strong> for each photo they post. That&#8217;s great information if you are a beginner and you want to learn more (as I did starting</span> <a href="http://www.reallyjapan.com/"><span style="color: #4e78a2; text-decoration: underline;"><span style="font-weight: normal;">Really Japan</span></span></a><span style="font-weight: normal;">). Having access to the EXIF informations of a photo gives you all the &#8216;settings&#8217; the</span> photographer used to take that photo <span style="font-weight: normal;">(iso, aperture, shutter speed, lens used, and so on).</span></strong></li>
<li style="line-height: 21.0px; font: 12.0px Arial; color: #333333"><strong><strong>It&#8217;s like blogging&#8230; without words</strong><span style="font: 12.0px Lucida Grande"><strong><br />
</strong></span><span style="font-weight: normal;">Especially if English is not your first language, starting a &#8216;real&#8217; blog could be troublesome. Instead, a photo blog is easier to manage, your photos are going to speak for you.</span></strong></li>
<li style="line-height: 21.0px; font: 12.0px Arial; color: #333333"><strong><strong>You&#8217;re going to receive a lot of comments &amp; critiques</strong><span style="font: 12.0px Lucida Grande"><strong><br />
</strong></span><span style="font-weight: normal;">When you open a photo blog.. ask, implore, for <strong>critiques</strong> on your works. Maybe you are not going to love comments like &#8216;<em>U SUX SUX SUX!</em>&#8216;, but other &#8211; more constructive &#8211; critiques will surely help you.<br />
</span><span style="font-weight: normal;">And don&#8217;t feel upset if someone points out what he doesn&#8217;t like about that photo, instead remember, it&#8217;s something you should appreciate. It&#8217;s very easy to write positive things, but it&#8217;s harder to start writing a critique.</span></strong></li>
<li style="line-height: 21.0px; font: 12.0px Arial; color: #333333"><strong><strong>It will become your home, on Internet.</strong><span style="font: 12.0px Lucida Grande"><strong><br />
</strong></span><span style="font-weight: normal;">A photoblog is a blog, and a blog is a website right? Basically when you open a website is like you&#8217;re opening a shop, or maybe like opening the door of your home to accept some guests.<br />
</span><span style="font-weight: normal;">Sure, you can just don&#8217;t care about the graphic template you&#8217;re going to use, don&#8217;t create a rss feed or saving all your images in 10 megabytes TIFF. Sure, you can do it. But come on,</span> you should welcome your guests <span style="font-weight: normal;">right?<br />
</span><span style="font-weight: normal;">When you start a photo blog you should <strong>think about the people who&#8217;re going to visit it</strong>. Try to select a <strong>cool name</strong>, choose a <strong>nice template</strong> and modify it to adapt to your style (if you already know some web design stuff you can work on it from scratch too). Learn some basic html, think about</span> the plugins <span style="font-weight: normal;">you could use to enhance the experience for your visitors.. it&#8217;s <strong>like</strong> <strong>opening your art gallery</strong>!<br />
Also, it&#8217;s incredibly important to</span> keep track of how your photo blog is doing<span style="font-weight: normal;">, where your visitors are coming from and what keywords they are using to reach you. Maybe it&#8217;s not important at the beginning, but it will help you if you plan to increase the traffic to your blog later.<br />
There are many great services that generate detailed statistics about the visitors to a website, for example</span> <a href="http://www.google.com/analytics"><span style="color: #4e78a2; text-decoration: underline;"><span style="font-weight: normal;">Google analytics</span></span></a> <span style="font-weight: normal;">(probably the best one, and free) or</span> <a href="http://getclicky.com/46951"><span style="color: #4e78a2; text-decoration: underline;"><span style="font-weight: normal;">Clicky</span></span></a> <span style="font-weight: normal;">(great for real time tracking, and you can check the statistics in real time with your iPhone too).. I have them both</span></strong></li>
<li style="line-height: 21.0px; font: 12.0px Arial; color: #333333"><strong>It&#8217;s easy!<br />
<span style="font-weight: normal;">If you already have a camera (reflex, compact, anything!) well, you already have the 90% you need to open a photo blog. Technically it&#8217;s very easy to setup and upload new photos</span></strong></li>
</ul>
<p style="margin: 0.0px 0.0px 15.0px 0.0px; line-height: 21.0px; font: 12.0px Arial; color: #333333"><strong><span style="font-weight: normal;">So.. the list could go on forever, but for this introduction I&#8217;m going to stop here.</span></strong></p>
<p style="margin: 0.0px 0.0px 15.0px 0.0px; line-height: 21.0px; font: 12.0px Arial; color: #333333"><strong><span style="font-weight: normal;">What should you expect from the next articles of Guide to Photo Blog? Well, something like this:</span></strong></p>
<ul style="list-style-type: disc">
<li style="line-height: 21.0px; font: 12.0px Arial; color: #333333"><strong><span style="font-weight: normal;">How to</span> install &amp; <span style="font-weight: normal;"><strong>set up your photo blog</strong> using Pixelpost</span></strong></li>
<li style="line-height: 21.0px; font: 12.0px Arial; color: #333333"><strong><span style="font-weight: normal;"><strong><span style="font-weight: normal;">How to</span> Customize</strong> your photo blog</span></strong></li>
<li style="line-height: 21.0px; font: 12.0px Arial; color: #333333"><strong><span style="font-weight: normal;">The <strong>Best Plugins</strong> and <strong>Templates</strong> for Pixelpost to enhance your Photo Blog</span></strong></li>
<li style="line-height: 21.0px; font: 12.0px Arial; color: #333333"><strong><span style="font-weight: normal;"><strong>How to promote</strong> your photo blog (social media, photo ring, seo, and so on)</span></strong></li>
<li style="line-height: 21.0px; font: 12.0px Arial; color: #333333"><strong><span style="font-weight: normal;">and other stuff!</span></strong></li>
</ul>
<p style="margin: 0.0px 0.0px 15.0px 0.0px; line-height: 21.0px; font: 12.0px Arial; color: #333333; min-height: 14.0px"><strong><br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.reallyjapan.com/blog/tutorials/guide-to-photoblogging-introduction/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>How to Create a Flaming Photo Manipulation</title>
		<link>http://www.reallyjapan.com/blog/tutorials/how-to-create-a-flaming-photo-manipulation/</link>
		<comments>http://www.reallyjapan.com/blog/tutorials/how-to-create-a-flaming-photo-manipulation/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 15:48:35 +0000</pubDate>
		<dc:creator>Ruben</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Spot on]]></category>
		<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[photo manipulation]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.reallyjapan.com/blog/tutorials/how-to-create-a-flaming-photo-manipulation/</guid>
		<description><![CDATA[<p><em><span style="font-style: normal;"></span>&#8220;In this tutorial, we&#8217;ll manipulate a picture so it looks like a woman burning in flames. The idea behind this manipulation was to create a nice looking illustration, only by</em>&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p><em><span style="font-style: normal;"><a href="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/pre.jpg" rel="lightbox[396]"><img class="alignleft" src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/pre.jpg" alt="pre.jpeg" width="200" height="200" /></a></span>&#8220;In this tutorial, we&#8217;ll manipulate a picture so it looks like a woman burning in flames. The idea behind this manipulation was to create a nice looking illustration, only by using simple techniques and tools such as the Brush tool and Warp command. I hope you enjoy the tutorial and try it with your own stock imagery.&#8221;</em></p>
<p>Check out this interesting tutorial created by Jayan Saputra (you can find his <a href="http://jayicesight.deviantart.com/" target="_blank">deviantart page here</a>) and published on <a href="http://psd.tutsplus.com" target="_blank">psd tuts</a>+.</p>
<p>It&#8217;s a pretty cool effect involving some warp transformation, find edges filters and of course custom brushes. I especially like the use of the warp transformation on the fire, never thought about that but I&#8217;ll definitely use this technique on the next <a href="http://www.reallyjapan.com/blog/japan-pictures/shots-future/" target="_blank">Shot from the Future</a>.</p>
<p><a href="http://psd.tutsplus.com/tutorials/tutorials-effects/how-to-create-a-flaming-photo-manipulation/" target="_blank">Continue Reading the Tutorial</a></p>
<p>Source: <a href="http://psd.tutsplus.com" target="_blank">psd tuts+</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.reallyjapan.com/blog/tutorials/how-to-create-a-flaming-photo-manipulation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making of a cyborg &#8211; Video</title>
		<link>http://www.reallyjapan.com/blog/tutorials/making-cyborg-youtube-video/</link>
		<comments>http://www.reallyjapan.com/blog/tutorials/making-cyborg-youtube-video/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 07:29:06 +0000</pubDate>
		<dc:creator>Ruben</dc:creator>
				<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[Video Channel]]></category>
		<category><![CDATA[cyborg]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.reallyjapan.com/blog/?p=277</guid>
		<description><![CDATA[<p>Check out the step by step guide too!</p>
<p>httpvh://www.youtube.com/watch?v=CO1VkHt_6tE</p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.reallyjapan.com/blog/tutorials/making-of-a-cyborg-in-20-steps-with-photoshop/">Check out the step by step guide too!</a></p>
<p>httpvh://www.youtube.com/watch?v=CO1VkHt_6tE</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reallyjapan.com/blog/tutorials/making-cyborg-youtube-video/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Making of a Cyborg in 20 steps with Photoshop</title>
		<link>http://www.reallyjapan.com/blog/tutorials/making-of-a-cyborg-in-20-steps-with-photoshop/</link>
		<comments>http://www.reallyjapan.com/blog/tutorials/making-of-a-cyborg-in-20-steps-with-photoshop/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 03:14:54 +0000</pubDate>
		<dc:creator>Ruben</dc:creator>
				<category><![CDATA[Headline]]></category>
		<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[cyborg]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.reallyjapan.com/blog/tutorials/making-of-a-cyborg-in-20-steps-with-photoshop/</guid>
		<description><![CDATA[I thought it would be cool to show you step by step how I created the image Steampunk Cyborgs in Hong Kong.

Basically it was quite simple and quick to make, since I've not used 3D renderings, it took about 2 hours... anyway, check it out!]]></description>
			<content:encoded><![CDATA[<p>I thought it would be cool to show you step by step how I created the image <a href="http://www.reallyjapan.com/index.php?showimage=219" target="_blank">Steampunk Cyborgs in Hong Kong.</a></p>
<p>Basically it was quite simple and quick to make, since I&#8217;ve not used 3D renderings, it took about 2 hours.</p>
<p><img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/34.jpg" alt="34.jpg" width="575" height="454" /></p>
<p><strong>Ok, here it is, let&#8217;s start!<br />
</strong></p>
<p><a href="http://www.reallyjapan.com/blog/tutorials/making-cyborg-youtube-video/">(If you are interested, there&#8217;s a video version too!)</a></p>
<p><strong><img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/12.jpg" alt="1.jpg" width="575" height="454" /></strong></p>
<p>This is the original picture, I just adjusted the colors in Adobe Lightroom.</p>
<p><strong>Step 1</strong></p>
<p><strong><img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/21.jpg" alt="2.jpg" width="575" height="454" /></strong></p>
<p>I searched on Internet for a &#8216;ship engine&#8217;, and I found this steampunkish thing. Actually, at the beginning I wasn&#8217;t too sure to create steampunk cyborgs (I was more a cyberpunk man, let&#8217;s say..), but as soon as I found this image I decided to go in that direction. One important thing was to find images with the right perspective, since I needed to mix them with the original picture.</p>
<p>Anyway, I dragged the image of the engine in the document and adjusted the colors using Match Color in Photoshop.</p>
<p><strong>Step 2</strong></p>
<p><strong><img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/3.jpg" alt="3.jpg" width="575" height="454" /></strong></p>
<p>I moved the engine overlapping the face of the man in the middle and started working on the mask.</p>
<p><strong><img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/4.jpg" alt="4.jpg" width="575" height="454" /></strong></p>
<p>It takes some time to mask correctly the object. Just try to follow the lines and the shape of the object you are masking.</p>
<p><strong>Step 3</strong></p>
<p><strong><img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/5.jpg" alt="5.jpg" width="575" height="454" /></strong></p>
<p>Ok, another engine here..</p>
<p><strong>Step 4</strong></p>
<p><strong><img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/6.jpg" alt="6.jpg" width="575" height="454" /></strong></p>
<p>Now let&#8217;s work on the man on the left. The color of the engine doesn&#8217;t match the background, so I need again the Match Color.</p>
<p><img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/7.jpg" alt="7.jpg" width="575" height="454" /></p>
<p><strong><span style="font-weight: normal;">Now it&#8217;s much better.</span></strong></p>
<p><strong>Step 5</strong></p>
<p><img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/8.jpg" alt="8.jpg" width="575" height="454" /></p>
<p>It&#8217;s time to mask the object.</p>
<p><img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/9.jpg" alt="9.jpg" width="575" height="454" /></p>
<p>Here we go. I also lighten up the engine to show better the mechanical parts.</p>
<p><strong>Step 6</strong></p>
<p><img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/10.jpg" alt="10.jpg" width="575" height="454" /></p>
<p>Another engine from Internet and again, Match Color to match the object color to the background image.</p>
<p><strong>Step 7</strong></p>
<p><strong><img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/111.jpg" alt="11.jpg" width="575" height="454" /></strong></p>
<p>Let&#8217;s move in on the back of the man on the right. Looks like the device used by the Ghostbusters!</p>
<p><strong>Step 8</strong></p>
<p>Now it&#8217;s time to work on the mask.<img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/13.jpg" alt="13.jpg" width="575" height="454" /></p>
<p>Here we go.</p>
<p><strong>Step 9</strong></p>
<p><strong><img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/14.jpg" alt="14.jpg" width="575" height="454" /></strong></p>
<p>Another engine.. match color.. and let&#8217;s move it.</p>
<p><strong>Step 10</strong></p>
<p><strong><img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/15.jpg" alt="15.jpg" width="575" height="454" /></strong></p>
<p>Some masking..</p>
<p><img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/16.jpg" alt="16.jpg" width="575" height="454" /></p>
<p><strong>Step 11</strong></p>
<p><strong><img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/17.jpg" alt="17.jpg" width="575" height="454" /></strong></p>
<p>Yeah.. again.. Steampunkish Overkill!</p>
<p><strong>Step 12</strong></p>
<p><img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/18.jpg" alt="18.jpg" width="575" height="454" /></p>
<p>Let&#8217;s move it and do some masking..</p>
<p><img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/19.jpg" alt="19.jpg" width="575" height="454" /></p>
<p>Pretty satisfied with the masking. Now the cyborg on the left has some weird mechanical device on his head and a cool respirator!</p>
<p><strong>Step 13</strong></p>
<p><strong><img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/20.jpg" alt="20.jpg" width="575" height="454" /></strong></p>
<p>Let&#8217;s add some shadows below the mechanical parts to enhance the 3D volume of the objects. I created a 50% gray overlay mode layer between the background and the robotic parts and painted it with the Burn Tool.</p>
<p><strong>Step 14</strong></p>
<p><strong><img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/211.jpg" alt="21.jpg" width="575" height="454" /></strong></p>
<p>This time I used a black brush, very soft, on a layer (Multiply mode) in front of all the other layers and painted some shadows.</p>
<p><strong>Step 15</strong></p>
<p><strong><img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/22.jpg" alt="22.jpg" width="575" height="454" /></strong></p>
<p>New Layer and Command + Alt + Shift + E (I think Command is Ctrl on windows but I&#8217;m not sure) to create a snapshot flattening all the layers in a single layer. Now I applied some blur..</p>
<p>And masked this layer!<img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/23.jpg" alt="23.jpg" width="575" height="454" /></p>
<p>I used a radial gradient to mask the blurred level. I centered the gradient on the table. This help to focus the scene on the three cyborgs slightly blurring the background.</p>
<p><strong>Step 16</strong></p>
<p><strong><img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/241.jpg" alt="24.jpg" width="575" height="454" /></strong></p>
<p>Let&#8217;s load some dirty textures and apply them to the cyborgs (you know, steampunk cyborgs don&#8217;t like to take shower).</p>
<p>You can see the texture on the red jacked, the hand, and on the ghostbuster device.</p>
<p><img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/26.jpg" alt="26.jpg" width="575" height="454" /></p>
<p><strong>Step 17</strong></p>
<p><strong><img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/27.jpg" alt="27.jpg" width="575" height="454" /></strong></p>
<p>Let&#8217;s desaturate a little the image.</p>
<p><strong>Step 18</strong></p>
<p><strong><img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/28.jpg" alt="28.jpg" width="575" height="454" /></strong></p>
<p>Oh God photoshop crashed! Ok, just kidding. I created a layer and filled it with this color.. then I set it on Overlay Mode.<img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/29.jpg" alt="29.jpg" width="575" height="454" /></p>
<p><strong>Step 19</strong></p>
<p><strong><img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/30.jpg" alt="30.jpg" width="575" height="454" /></strong></p>
<p>Let&#8217;s add some contrast&#8230;</p>
<p><strong>Step 20</strong></p>
<p><img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/31.jpg" alt="31.jpg" width="575" height="454" /></p>
<p>Don&#8217;t you want some smoke in the image? So, with a brush on a new layer paint some brush (very low opacity!)</p>
<p><strong>Step 20 + the dirty textures</strong></p>
<p><strong><img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/33.jpg" alt="33.jpg" width="575" height="454" /></strong></p>
<p>Now let&#8217;s add the famous <a href="http://www.reallyjapan.com/blog/tutorials/dusty-textures/" target="_blank">Dirty dusty texture I made</a>! Remember, screen mode this time!</p>
<p>(oh, and another secret texture on the top of the image.. I&#8217;ll release it soon anyway)</p>
<p><img src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/34.jpg" alt="34.jpg" width="575" height="454" /></p>
<p>That&#8217;s all!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reallyjapan.com/blog/tutorials/making-of-a-cyborg-in-20-steps-with-photoshop/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Dusty Textures</title>
		<link>http://www.reallyjapan.com/blog/tutorials/dusty-textures/</link>
		<comments>http://www.reallyjapan.com/blog/tutorials/dusty-textures/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 07:55:22 +0000</pubDate>
		<dc:creator>Ruben</dc:creator>
				<category><![CDATA[Headline]]></category>
		<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[freebies]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[texture]]></category>

		<guid isPermaLink="false">http://www.reallyjapan.com/blog/?p=220</guid>
		<description><![CDATA[Three dirty textures with dust, hair, and some fingerprints to dirt you digitally perfect photography!]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/intro.jpg" rel="lightbox[220]"><img class="alignnone size-full wp-image-225" title="intro" src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/intro.jpg" alt="intro" width="570" height="450" /></a></p>
<p>If you&#8217;ve noticed some dust, hair and dirty things on my pictures, like <a href="http://www.reallyjapan.com/index.php?showimage=220" target="_blank">this</a>, <a href="http://www.reallyjapan.com/index.php?showimage=218 " target="_blank">this</a>, and <a href="http://www.reallyjapan.com/index.php?showimage=207 " target="_blank">this</a>, and yes <a href="http://www.reallyjapan.com/index.php?showimage=206 ">this one too</a>, well, I can tell you I don&#8217;t like so much to clean home and even my computer desktop is a mess. Besides that.. I love grain, dust and those dirty picturessss.</p>
<p>So, anyway, today I&#8217;m feeling extremely generous and I&#8217;ll give you some dirtness. Three textures I made, to give your photographs a dusty and analogic feeling&#8230; to turn this kind of shots:</p>
<p><a href="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/orig1.jpg" rel="lightbox[220]"><img class="alignnone size-full wp-image-226" title="orig1" src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/orig1.jpg" alt="orig1" width="551" height="367" /></a></p>
<p>into this..</p>
<p><a href="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/dusted.jpg" rel="lightbox[220]"><img class="alignnone size-full wp-image-224" title="dusted" src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/dusted.jpg" alt="dusted" width="551" height="367" /></a></p>
<p>Just place one of the texture on a layer in front of you picture using the <strong>Screen</strong> overlay mode.. adjust the <strong>levels</strong> and the <strong>opacity</strong> to adjust the effect!</p>
<h3><a href="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/dust1.jpg" rel="lightbox[220]">Download the dirty texture 1</a></h3>
<h3><a href="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/dust2.jpg" rel="lightbox[220]">Download the dirty texture 2</a></h3>
<h3><a href="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/dust3.jpg" rel="lightbox[220]">Download the dirty texture 3</a></h3>
]]></content:encoded>
			<wfw:commentRss>http://www.reallyjapan.com/blog/tutorials/dusty-textures/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Non-Destructive Lens Flare in Photoshop</title>
		<link>http://www.reallyjapan.com/blog/tutorials/non-destructive-lens-flare-in-photoshop/</link>
		<comments>http://www.reallyjapan.com/blog/tutorials/non-destructive-lens-flare-in-photoshop/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 02:51:34 +0000</pubDate>
		<dc:creator>Ruben</dc:creator>
				<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[vfx]]></category>

		<guid isPermaLink="false">http://www.reallyjapan.com/blog/?p=143</guid>
		<description><![CDATA[<p>If I say “Lens Flare”, what’s the first thing coming to your mind?</p>
<p>Well, for me it’s something like this:</p>
<p></p>
<p>Yeah, pretty scary, isn’t it? Something from the 90’s..&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>If I say “Lens Flare”, what’s the first thing coming to your mind?</p>
<p>Well, for me it’s something like this:</p>
<p><a href="http://darkroom.reallyjapan.com/wp-content/uploads/2008/08/zz7ad32b61.png" rel="lightbox[143]"><img class="alignnone size-medium wp-image-72" title="zz7ad32b61" src="http://darkroom.reallyjapan.com/wp-content/uploads/2008/08/zz7ad32b61-300x168.png" alt="" width="300" height="168" /></a></p>
<p>Yeah, pretty scary, isn’t it? Something from the 90’s.. remember <em>Geocities</em>? Fortunately now we have social websites with great graphic design and usability.. you know something like <em>myspace</em> (doh!).</p>
<p>However, I like Lens Flare, and I use this effect on many photos to enhance the light. Take a look for example to this shot:</p>
<p><a href="http://www.reallyjapan.com/index.php?showimage=145"><img src="http://www.reallyjapan.com/images/20080727211144_glamour.jpg" alt="" width="457" height="338" /></a></p>
<p>There are two lens flare, one on the left, slightly orange/red, and another on the right, white.</p>
<p>The lens flare effect in photoshop is not bad, however has some problems:</p>
<ol>
<li>You have to apply the effect on the picture in a destructive way</li>
<li>There are just four kinds of LF</li>
<li>You cannot change the color</li>
<li>..and anyway, there are no way to change params after you’ve applied the effect!</li>
</ol>
<p>…or no?</p>
<p>Actually you can use the lens flare effect in a very dynamic way, like a… smart filter.</p>
<p><strong>Create a non-destructive, smart Lens Flare filter.</strong></p>
<ol>
<li><strong>Open a photo</strong> you want to apply a LF on</li>
<li>Create a New Layer using <strong>Command+Shift+N.</strong> This will show the New Layer Dialog.</li>
<li>Select Mode: <strong>Hard Light</strong> and check <strong>Fill with Hard-Light-neutral</strong> color 50% gray and click ok, creating the layer.<br />
<a href="http://darkroom.reallyjapan.com/wp-content/uploads/2008/08/zz0a03bfa4.jpg" rel="lightbox[143]"><img class="alignnone size-full wp-image-73" title="zz0a03bfa4" src="http://darkroom.reallyjapan.com/wp-content/uploads/2008/08/zz0a03bfa4.jpg" alt="" width="364" height="53" /></a></li>
<li>Now let’s convert this layer to a <strong>Smart Object</strong>… long story short, a layer you can adjust in a non-destructive way.. <strong>Select Layer &gt; Smart Objects &gt; Convert to Smart Object</strong>.<br />
<a href="http://darkroom.reallyjapan.com/wp-content/uploads/2008/08/zz1869a7b2.jpg" rel="lightbox[143]"><img class="alignnone size-medium wp-image-74" title="zz1869a7b2" src="http://darkroom.reallyjapan.com/wp-content/uploads/2008/08/zz1869a7b2-300x82.jpg" alt="" width="300" height="82" /></a></li>
<li>Now it’s time to apply our Lens Flare filter, so <strong>Filter &gt; Render &gt; Lens Flare</strong>.</li>
<li>In the Lens Flare Dialog, you should be able to customize your lens flare effect.. especially where you to want apply the effect.. however, since we are working on a 50% gray layer you’ll see just a big gray area. But let’s just press OK for now and apply the effect.</li>
<li>Let’s give a look to the LF Layer<br />
<a href="http://darkroom.reallyjapan.com/wp-content/uploads/2008/08/zz5510e97e.jpg" rel="lightbox[143]"><img class="alignnone size-medium wp-image-75" title="zz5510e97e" src="http://darkroom.reallyjapan.com/wp-content/uploads/2008/08/zz5510e97e.jpg" alt="" width="223" height="72" /></a><br />
Well, that’s a <strong>Smart Filter</strong>. A filter you can adjust as you like in a non-destructive way.<br />
As you can see on the image, the lens flare renders perfectly. However, since we have used the effect on a Hard Light 50% gray smart layer, the Lens Flare is not messing up with your photo.. it’s non-destructive!</li>
<li>To move and adjust the Lens Flare effect just <strong>double click on Lens Flare</strong>, under Smart Filters (in the Layers Palette).. You can adjust your LF and change it as you like.. let’s proceed.</li>
</ol>
<p><strong>Apply the LF on a point in the image.<br />
</strong>Now you have your LF smart filter.. however there’s no easy way to point you LF where you like. The best way to do it is this one:</p>
<ol>
<li>Activate your <strong>Info palette</strong> (Window &gt; Info) if it’s not already activated.<br />
<a href="http://darkroom.reallyjapan.com/wp-content/uploads/2008/08/zz0ca303c1.jpg" rel="lightbox[143]"><img class="alignnone size-full wp-image-76" title="zz0ca303c1" src="http://darkroom.reallyjapan.com/wp-content/uploads/2008/08/zz0ca303c1.jpg" alt="" width="264" height="151" /></a><br />
Here it is.. basically it tells you the RGB color and the XY position of your mouse cursor on the photo. Press on the + (the cross) on the left of that X: Y:, and select Pixels (to see the XY values in pixels).</li>
<li>Now <strong>move your mouse</strong> in the photo where you want to apply the lens flare effect, and <strong>check the XY values</strong>.. let’s say they are X: 250 Y:150</li>
<li>Double click on the <strong>Lens Flare Smart Filter</strong>.</li>
<li>Now, <strong>Click on the Flare Center preview</strong> <strong>while</strong> <strong>pressing the</strong> <strong>ALT/OPTION key</strong>… that will open the<strong>Precise Flare Center Dialog</strong>.<br />
<a href="http://darkroom.reallyjapan.com/wp-content/uploads/2008/08/zz5265b9ec.jpg" rel="lightbox[143]"><img class="alignnone size-medium wp-image-77" title="zz5265b9ec" src="http://darkroom.reallyjapan.com/wp-content/uploads/2008/08/zz5265b9ec.jpg" alt="" width="294" height="143" /></a><br />
Write here your X and Y!</li>
<li>Here it is, you correctly placed your Smart LF Effect where you want!</li>
</ol>
<p><strong>Customize the Lens Flare effect<br />
</strong>You can change position, brightness and type as you like with the Smart LF effect… But let’s see you don’t like the color<strong> </strong>and you want to change it? Or maybe you want something more blurred?</p>
<p>Since you’re working on a Smart Object with Smart Filter you can add many other smart filters to modify your lens flare.</p>
<p>If you want to apply a <strong>blur</strong> on your LF, just select <strong>Filter&gt;Blur&gt;Gaussian Blur</strong>. Now you can adjust your blur effect on the lens flare. Of course, after you’ve applied the effect you’re free to modify or delete it as you like in a non-destructive way.</p>
<p>You can also <strong>adjust the opacity</strong> and the <strong>blending mode</strong> of the single effects just clicking on the icon on the right</p>
<p><a href="http://darkroom.reallyjapan.com/wp-content/uploads/2008/08/zz5685ddcb.jpg" rel="lightbox[143]"><img class="alignnone size-full wp-image-78" title="zz5685ddcb" src="http://darkroom.reallyjapan.com/wp-content/uploads/2008/08/zz5685ddcb.jpg" alt="" width="193" height="55" /></a></p>
<p><strong>How to change the color</strong> <strong>of the lens flare</strong></p>
<p>It’s pretty simple, and the procedure is non-destructive.</p>
<ol>
<li>Create a new <strong>Hue/Saturation Adjustment Layer</strong> (you can also use a Color Balance to have more control if you like) and press ok on the Dialog.<br />
<a href="http://darkroom.reallyjapan.com/wp-content/uploads/2008/08/zz65d7d254.jpg" rel="lightbox[143]"><img class="alignnone size-medium wp-image-79" title="zz65d7d254" src="http://darkroom.reallyjapan.com/wp-content/uploads/2008/08/zz65d7d254.jpg" alt="" width="224" height="100" /></a></li>
<li>Now press <strong>Command+Alt+G</strong>. In this way you link the Hue/Saturation Adj. Layer to the LF smart filter, not affecting the photo.<br />
<a href="http://darkroom.reallyjapan.com/wp-content/uploads/2008/08/zz235cb7a8.jpg" rel="lightbox[143]"><img class="alignnone size-medium wp-image-80" title="zz235cb7a8" src="http://darkroom.reallyjapan.com/wp-content/uploads/2008/08/zz235cb7a8.jpg" alt="" width="103" height="57" /></a><br />
A small arrow will tell you: “Yeah, that’s right man!”</li>
<li>Now just double click on the Hue/Saturation Layer to <strong>adjust your effect</strong>!<br />
You can use the Hue/Saturation sliders to adjust the color and the saturation.. however do not touch the Lightness, since it will affect the brightness of the image.</li>
<li>Feel free to change colors/saturation as you like and remember you can still double click on the Lens Flare layer to adjust position, brightness and the kind of LF!</li>
</ol>
<p><strong>A Diffuse Light</strong><strong><br />
</strong></p>
<p>You can create many lens flare.. however also some lighting effect, for example a diffuse light, just select LF Dialog: Brightness &gt; 100% &#8211; Lens Type : 105mm Prime and in Hue/Sat select the color of the light source in the image.</p>
<p><strong>Tips</strong></p>
<ol>
<li>Place the effect on a point in the photo where there’s already a <strong>light source</strong>. You want to apply the effect where it’s plausible.</li>
<li>The color of the light/LF should match the <strong>color of the light source</strong>.</li>
<li><strong>Paint a mask</strong> to adjust how the light/lensflare effect affects the different parts of the image (that means, look where the shadows are in your photo and try to apply the effect in a realistic way. Slightly decrease the opacity of the effect on a dark zone, or if you prefer draw exactly the light where you want.)</li>
<li><strong>Do Not Overdo</strong>!</li>
<li>You can apply as many LF effect you want on a single Smart Object</li>
</ol>
<p>Well, it’s all.. for now! Happy Lens Flare!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reallyjapan.com/blog/tutorials/non-destructive-lens-flare-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Trap Focus on Nikon D80</title>
		<link>http://www.reallyjapan.com/blog/tutorials/trap-focus-on-nikon-d80/</link>
		<comments>http://www.reallyjapan.com/blog/tutorials/trap-focus-on-nikon-d80/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 02:28:36 +0000</pubDate>
		<dc:creator>Ruben</dc:creator>
				<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[camera]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.reallyjapan.com/blog/?p=138</guid>
		<description><![CDATA[Do you know what trap focus is? 
Well, I’ve found out this cool technique yesterday and, if you don’t know it yet, keep reading!]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/1-11.jpg" rel="lightbox[138]"><img class="alignleft size-full wp-image-139" title="1-11" src="http://www.reallyjapan.com/blog/wp-content/uploads/2009/02/1-11.jpg" alt="1-11" width="316" height="300" /></a>Do you know what <strong>trap focus </strong>is? <br id="ixtu0" />Well, I’ve found out this cool technique yesterday and, if you don’t know it yet, keep reading!<br id="m33o" /><br id="i598" />Basically trap focus is when, after doing some abracadabra to the settings of your camera, you <strong>choose a point to focus</strong> the camera and as soon as a subject enter in that area and it’s 100% in focus, click!, the camera <strong>start shooting automatically</strong>.<br id="xc6b" /><br id="du0c" />Ok, now I’m going to explain you how this technique works on a Nikon D80.. I presume it’s pretty the same on other Nikons and should be quite similar on Canon cameras too..<br id="fb54" /><br id="fb540" /></p>
<ol id="fb541">
<li id="fb542"><strong>Set your lens and camera for autofocus<br id="t96a" /></strong>You can do it with manual focus too, but it’s probably easier with autofocus<br id="tcl60" /></li>
<li id="fb542"><strong>Set your camera in autofocus single-area</strong> <strong>AF-S</strong><br />
In this mode when you press the shutter release button the camera will first focus and then take a photo. No photos will be taken before the camera has focused.</li>
<li id="fb542"><strong>Set</strong> <strong>AF-AREA to “Single Area” <br id="kfz21" /></strong>It’s in the Pencil Menu &#8211; 03. That means it will use a single point to focus.</li>
<li id="fb542"><strong>Set </strong><strong>the AE-L/AF-L button to “AF”<br id="ux-q0" /></strong>Pencil menu &#8211; 15. This means: the camera will autofocus only when you press the AE-L/AF-L button, not when you press the shutter release button.</li>
</ol>
<p><br id="f4lh" /><strong>What you are doing is saying to your camera: </strong><br id="f4lh0" /></p>
<ul id="xg.0">
<li id="xg.00">I don’t want you to autofocus before taking a shot. <br id="o4jr" /></li>
<li id="xg.00">I want you to take a photo only when the autofocus has done its job</li>
<li id="xg.00">I want to tell you where the trap-focus area will be pointing the camera somewhere and focusing</li>
</ul>
<p><br id="odi4" /><strong>How does it work:</strong><br id="u-:b" /></p>
<ol id="u-:b0">
<li id="u-:b1">Tell a friend to go few meters away from you.</li>
<li id="u-:b1">Point your camera (a wide aperture is better) to your friend.<br id="cr_7" /></li>
<li id="u-:b1">Press the AE-L/AF-L button. This will autofocus the camera in that point. Now you have your trap-focus in that area. (point4)<br id="we30" /></li>
<li id="u-:b1">Ask your friend to move further from you.</li>
<li id="u-:b1">Now the cool part: Press &amp; keep pressing the shutter release button. The camera will not take a photo because you told her (yes, she’s female, at least in Italian) to obtain focus <strong>before</strong> releasing the shutter (point 2/3), however you’ve already focused on an area but in that moment the camera doesn’t see anything focused.. so she’ll just wait..</li>
<li id="u-:b1">Ask your friend to come closer.. (hug if you like, later)<br id="m14c" /></li>
<li id="u-:b1">As soon as your friend enters in the trap-focus area… clikclickclickclick! The camera will automatically take photos!</li>
</ol>
<p><br id="a7x:" />It’s so funny, I spent one hour just doing these stupid things..<br id="ysgu1" /><br id="ysgu2" />How can you use it:<br id="ysgu3" /></p>
<ul id="e74m">
<li id="e74m0">Sport photography (car racing for example, you point somewhere and wait the cars)</li>
<li id="e74m1">Street photography &#8211; wide lenses (focus few meter away, walk, point you camera to the other people)</li>
<li id="e74m1">Street photography &#8211; long long lenses (that’s probably interesting, however I don’t have big zoom lens so I’ve not tried… you could just set a wide aperture, point your camera somewhere and wait people entering in the trap focus area)</li>
<li id="e74m1">Spy photography (just kidding…using a remote external shutter release and pointing the camera to your neighbor’s window &#8211; especially if she’s hot)</li>
<li id="e74m1">Wildlife?</li>
</ul>
<p><br id="abo." />Anyway, it’s a funny cool technique, have fun!<br id="abo.0" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.reallyjapan.com/blog/tutorials/trap-focus-on-nikon-d80/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Sharpen photos in Photoshop</title>
		<link>http://www.reallyjapan.com/blog/tutorials/how-to-sharpen-photos-in-photoshop/</link>
		<comments>http://www.reallyjapan.com/blog/tutorials/how-to-sharpen-photos-in-photoshop/#comments</comments>
		<pubDate>Sun, 15 Feb 2009 02:59:58 +0000</pubDate>
		<dc:creator>Ruben</dc:creator>
				<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[sharpen]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.reallyjapan.com/blog/?p=101</guid>
		<description><![CDATA[<p style="text-align: justify;">I&#8217;ve been asked many times how I sharpen and color process my photos. <br id="m7ke" />Today I&#8217;m going to explain you my technique on sharpening.<br id="m7ke0" /></p>
<h3<p>&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">I&#8217;ve been asked many times how I sharpen and color process my photos. <br id="m7ke" />Today I&#8217;m going to explain you my technique on sharpening.<br id="m7ke0" /></p>
<h3 id="x9ev" style="text-align: justify;"><strong><span style="font-size: small;">STEP 1 &#8211; THE CAMERA</span></strong></h3>
<p style="text-align: justify;">Having incredibly sharp photos is not something you can do only using Photoshop. If you take your photo with high ISO values, low shutter speed (and you have some blur) or plastic toy lens you&#8217;ll probably fix something with Photoshop, but just fix, not improve the sharpness. <br id="m7ke3" /><br id="m7ke4" />So, it&#8217;s essential to take photos as sharp as you can.. Here some tips:<br id="m7ke5" /></p>
<ol id="flya" style="text-align: justify;">
<li id="flya0"> <strong>Use a Prime Lens </strong><br />
<img id="cose" style="margin: 1em 1em 0pt 0pt; width: 123px; height: 107px; float: left;" src="http://docs.google.com/a/reallyjapan.com/File?id=d6fp2h6_19chmdjf4g_b" alt="" />Prime Lenses are wonderful, especially for street photography, and using them it&#8217;s easier to take sharp photos. And the reason is simple. They have <span style="text-decoration: underline;">superior optical performance</span>. 50mm prime lenses have been built since the 1930s. Their optical designs is just perfect. That means: the sharpest optics you can buy. They are are a lot faster than zoom lenses, that means you can take in lowlight conditions sharp photos thanks to their speed (without a tripod), and without using high-iso. You don&#8217;t need to use a long exposure when you can set your aperture at f/1.4.<br id="e0mu" /><br id="e0mu0" /></li>
<li id="flya0"><strong>Set your camera to Burst Mode</strong><br id="j.su0" /><img id="y0tm" style="margin: 1em 0pt 0pt 1em; width: 130px; height: 98px; float: right;" src="http://docs.google.com/a/reallyjapan.com/File?id=d6fp2h6_20hm7pwqfv_b" alt="" />Every time you take your camera, look through the viewfinder and press the shutter release button, a lot of things can happen. An earthquake or an asteroid hitting the earth too. However, what&#8217;s more likely is that you&#8217;ll end up shaking the camera a little while pressing the button.<br id="ga1b" />There&#8217;s always a risk to ruin your photos for this reason, and you&#8217;ll know only examining the photos on the screen of your camera. In the meanwhile, the moment is gone.<br id="ga1b0" />So, are you shooting using a digital camera? Well, waste your megagigaterabytes! Set you camera in burst mode and shoot at least 3/4 photos everytime you press the shutter release button.<br id="yj2i" />At least one will be sharp, and consequently you will be happy. Or at least happier than taking a single not-so-sharp photo.<br id="leg9" /><br id="leg90" /></li>
<li id="flya0"><strong>Use a tripod&#8230;.</strong><br id="yj2i1" />Yeah, that&#8217;s a good advice.. But I&#8217;m not using it because in street photography you don&#8217;t have time to place that thing and anyway, you already need a fast shutter speed to capture the people.. <br id="yj2i2" />I wrote it just because every &#8220;<strong>10 tips for taking AMAZING photos</strong><span style="color: #ff0000;">!!!</span>&#8221; on digg has this amazingly funny gag to write at least on 3 or 4 points &#8220;USE A TRIPOD&#8221;, &#8220;I TOLD YOU TO USE A TRIPOD, DIDN&#8217;T I?&#8221;, &#8220;THE TRIPOD IS YOUR BEST FRIEND&#8221;.. no, it&#8217;s not, at least not mine.<br id="srzt" /><br id="srzt0" /></li>
<li id="flya0"><strong>Pre-focus your camera</strong><br id="lc010" />Auto focus is great, I love it and couldn&#8217;t live without..I use it to measure the length of my apartment too, but when you&#8217;re acting fast, maybe in low-light and using a f/1.4 aperture, you&#8217;ll soon realize that the autofocus is slow, it makes you feel depressed, and as soon as you take the photo, the focus will be somewhere else. What to do? Well, for me it&#8217;s like fishing: I find a good spot on the sidewalk, focus my camera to few meters away (using some object to focus at the right distance), set in manual focus mode and as soon as someone is near the object I&#8217;ve used to focus my camera.. click! Gotcha!<br id="srzt1" /><br id="srzt2" /></li>
<li id="flya0"><strong>Find the sweet spot</strong><br id="gqje0" /><img id="oj9t" style="margin: 1em 1em 0pt 0pt; width: 120px; height: 80px; float: left;" src="http://docs.google.com/a/reallyjapan.com/File?id=d6fp2h6_22fc24kmsd_b" alt="" />Every lens has a sweet spot, the aperture value that gives a lot of pleasure to your camera and the sharpest photos to you&#8230; You have to find it, try or just use Google.. or use the Force if you are <span style="font-size: xx-small;">short</span>, <span style="color: #274e13;">green</span>, with big <strong></strong>ears<strong>/</strong> and pretty <span style="font-size: small;"><span style="font-family: Times New Roman;">old</span></span>..<br id="srzt3" /><br id="yr1c" /><br id="srzt4" /></li>
<li id="flya0"><strong>RAW</strong><br id="md8z5" />Always, always shoot in raw. It&#8217;s uncompressed, has a lot of data, you don&#8217;t need to set the white point and use colored filters.. and it&#8217;s raw, come on, it&#8217;s cool, in its natural state, not yet processed, so wild!<br id="srzt5" /><br id="srzt6" /></li>
<li id="flya0"><strong>Low ISO</strong><br id="md8z7" /><img id="i5kk" style="margin: 1em 1em 0pt 0pt; width: 111px; height: 111px; float: left;" src="http://docs.google.com/a/reallyjapan.com/File?id=d6fp2h6_21cj944gg7_b" alt="" />Try to shoot at low iso values. I know sometime it&#8217;s hard and I don&#8217;t want to sound like your mom, but especially in low-light conditions, it&#8217;s a pretty big deal..<br id="md8z8" /><strong>100-400 iso</strong> : GREEN LEVEL &#8211; you&#8217;re pretty ok, your photo has the potential to be uber sharp<br id="md8z9" /><strong>400-800 iso</strong> : ORANGE LEVEL &#8211; mmh, it can be a great shot, but don&#8217;t pretend to process it as sharp as a knife<br id="md8z10" /><strong>800-1200 iso</strong>: RED LEVEL &#8211; Yeah, that&#8217;s pretty noisy<br id="md8z11" /><strong>1200-3200 iso</strong>: DANGEROUS RED LEVEL &#8211; Yeaaaaah, we&#8217;re so raw! It&#8217;s so old school, yeaaah we like it dirty!<br id="ykn73" />Anyway, try to stay under 400 iso..<br id="m7ke45" /></li>
</ol>
<h3 id="oscb" style="text-align: justify;"><span style="font-size: small;"><strong><span style="color: #0b5394;">STEP 2 &#8211; PHOTOSHOP</span></strong></span></h3>
<p style="text-align: justify;">Now it&#8217;s time to use the computer, and here&#8217;s a short introduction to the process I&#8217;m using for my photos:</p>
<ul id="oscb3" style="text-align: justify;">
<li id="oscb4"><strong>Lightroom</strong> (Import and basic processing)<br id="oscb6" />I use Lightroom to manage my photos and do some simple processing. The point here, is to don&#8217;t overdo it. In Lightroom is pretty easy to go wild experimenting on the photos, and that&#8217;s great because you can <em>play</em> with the photo and get an idea on the final result. However, I try to use lightroom just to do the basic steps like cropping, rotating, balancing colors/levels and so on to have an image as natural/neutral as possible. When the image looks pretty OK, I right click on it and select <strong>Edit on Photoshop</strong> to continue the process. Here I select <strong>16bit/channel</strong> and <strong><a id="w5bl" title="ProPhoto RGB" href="http://www.luminous-landscape.com/tutorials/prophoto-rgb.shtml">ProPhoto RGB</a></strong> colorspace.<br id="b7q10" />Now, that doesn&#8217;t me you have to use photoshop for all the photos in your library. Just be selective and see which photos really need that treatment.</li>
<li id="oscb4"><strong>Photoshop</strong><br id="ifm60" />A) Remove Noise &#8211; The first step is to remove the noise. Use what you like, but I find Reduce Noise pretty good.<br id="ifm61" />B) Magic tricks &#8211; Here&#8217;s the big processing.. Color, dodge burn, layers and so on.. But we&#8217;re talking about sharpness, so let&#8217;s proceed..<br id="ifm62" />C) Resize to your final upload size (for me is always 800pixel)<br id="z2k_" />D) Let&#8217;s sharpen!- And we start the sharpening process. Only when you have already resized your picture to the desired size!</li>
</ul>
<p style="text-align: justify;"><br id="z2k_0" /><span style="font-size: small;"><strong>Sharpening</strong></span><br id="m7ke60" />There are many ways to sharpen photos using photoshop, let&#8217;s see what we have in Sharpen&gt;:<br id="m7ke61" /><strong>Sharpen</strong> &#8211; no good, too basic<br id="m7ke62" /><strong>Sharpen Edges</strong> &#8211; no good, too basic<br id="m7ke63" /> <strong>Sharpen More</strong> &#8211; more than what? Hey Adobe, come on..<br id="m7ke64" /> <strong>Unsharp Mask</strong> &#8211; I used to use this one.. but now..<br id="m7ke65" /><strong>Smart Sharpen</strong> &#8211; That&#8217;s the sharpen method I use<br id="m7ke66" />also, <strong>Other &gt; High Pass</strong> is another great filter to sharpen your photos and increase the local contrast.. I&#8217;ve some tips for this too, maybe in the next posts..<br id="m7ke67" /><br id="m7ke68" />So I&#8217;m going to use Smart Sharpen to sharpen my photos, I don&#8217;t care so much about all the magic tricks the smart sharpen filter does under the hood. What&#8217;s really important is understand how to use it.</p>
<p style="text-align: justify;"><img id="m7ke78" style="margin: 1em 1em 0pt 0pt; width: 273px; height: 257px; float: left;" src="http://docs.google.com/a/reallyjapan.com/File?id=d6fp2h6_10cdqqhncj_b" alt="" /> <br id="v4j4" />As you can see you have three different tabs: <span style="text-decoration: underline;">Sharpness</span>, <span style="text-decoration: underline;">Shadow</span> and <span style="text-decoration: underline;">Highlights</span>. Basically you can adjust how Smart Sharpen affects the shadows and the highlights.. but, who cares?! So, let&#8217;s see the <span style="text-decoration: underline;">Sharpen Dialog</span>.<br id="m7ke79" /><br id="m7ke80" /><strong>Amount</strong>: well, sets the amount of sharpening<br id="m7ke81" /><strong>Radius</strong>: determines the number of pixels surrounding the edge pixels affected by the sharpening<br id="m7ke82" /><strong>Remove</strong>: Sets the sharpening algorithm, the values are Gaussian Blur, Motion blur or Lens blur<br id="m7ke83" /><br id="m7ke84" />And.. <strong>more accurate</strong>: Processes the file more slowly for a more accurate removal of blurring.. of course you need to select this<br id="m7ke85" /><br id="m7ke86" /> Ok, first of all, select <strong>Remove: Lens Blur </strong>(or motion blur if you have some motion blur) and check <strong>More Accurate</strong>. <br id="m7ke87" /><br id="m7ke88" />Now, <strong>Amount</strong> define how much you want the sharpening effect affects the image right? There are no solid rules, the only thing is, as I said before, to <span style="text-decoration: underline;">don&#8217;t overdo</span>. Anything between 30% and 140% could be ok, you just have to try and give a look to the preview.<br id="m7ke89" />On <strong>Radius</strong>, it really depends on the level of detail you have in the photo. To increase the sharpness of smart details (where everything in your photo is perfectly sharp) something like 0.3-0.6 is ok. <br id="m7ke91" />For slightly burred zone maybe 0.6-1.8 is ok. <br id="m7ke92" />Setting this value to more than 1.5 means you have wide, blurred details to recover.<br id="m7ke93" />So, here&#8217;s thing:</p>
<p><span class="important">a small radius recovers sharp or just slightly blurred details </span></p>
<p><span class="important">a larger radius recovers wider blurred area</span><br id="m7ke97" /><br id="m7ke98" />What does that mean? <br id="m7ke99" />If you take a photo at f/18 you&#8217;ll probably have everything sharp in your photos, but if you have a DOF (especially a narrow one like using f/1.4 or f/1.8) something will be 100% sharp ok but something else 80% and so on until a wonderful bokeh.<br id="m7ke101" /><br id="m7ke102" />This amazing illustration says everything:<br id="m7ke103" /><br id="m7ke104" /><img id="m7ke105" src="http://docs.google.com/a/reallyjapan.com/File?id=d6fp2h6_11cb6vsbhp_b" alt="" /><br id="m7ke106" /><br id="skzm" /><br id="m7ke107" /><img id="m7ke108" style="margin: 1em 0pt 0pt 1em; width: 219px; height: 192px; float: right;" src="http://docs.google.com/a/reallyjapan.com/File?id=d6fp2h6_94hpgfkc6_b" alt="" />Applying a single smart sharpen filter on the whole image is not enough to enhance the details in the photo. Because some areas (the 100% focus area) require a small smart sharpen radius, while other area require an increasingly larger value.<br id="m7ke109" /><br id="m7ke110" />Let&#8217;s take this <span style="text-decoration: underline;">table on the right</span> for example. On the first column we have the <strong>original image</strong> (representing our detail to recover) with different lens blur applied. That defines the details in our photo affected by different degrees of blur (by DOF).<br id="m7ke111" /><br id="m7ke112" />Next we have the same image <strong>processed by three smart sharpen filter with different radius</strong>.<br id="m7ke113" />As you can see, applying a small radius works very well on slightly blurred details, while a larger radius works better on very blurred details.<br id="m7ke114" />Using a low radius on a blurred detail is useless and using a high radius on a slightly blurred area creates a lot of artifacts.. <br id="m7ke115" /><br id="m7ke116" />And that&#8217;s exactly what happens in a lot of photo, often a right radius works for some area but overdoes in other (or it&#8217;s not effective).<br id="m7ke117" /><br id="m7ke118" />Besides that, a sharpen filter increase the details, but also the noise, and there&#8217;s no need to apply sharpness and increase noise in bokeh right?<br id="m7ke119" /><br id="m7ke120" />Long story short: <span class="important">Be selective.</span><br id="m7ke121" /><br id="m7ke122" /><span style="font-size: small;"><strong>Selective Sharpness</strong></span><br id="m7ke124" />Let&#8217;s take a photo, for example <a id="httz" title="The Ghost Rider" href="http://www.reallyjapan.com/index.php?showimage=109" target="_blank">The Ghost Rider</a> <br id="m7ke125" /><br id="t-te" /><strong>RAW</strong><br id="m7ke135" /><img id="m7ke136" src="http://docs.google.com/a/reallyjapan.com/File?id=d6fp2h6_14cmqtqrgd_b" alt="" width="298" height="411" /><br id="t-te1" /><br id="t-te2" /><strong>PROCESSED</strong><br />
<img id="qkpn" style="width: 298px; height: 411px;" src="http://docs.google.com/a/reallyjapan.com/File?id=d6fp2h6_23dftdxgc7_b" alt="" /></p>
<p style="text-align: justify;">Ok, there&#8217;s some other processing, but let&#8217;s just talk about the sharpness for now.<br id="t-te5" /><br id="m7ke140" />In this photo I pointed my camera to the front of the motorbike, that&#8217;s perfectly focused. However the asphalt in the foreground is a little blurred, the same can be said of the man, some details of the motorbike and the background.<br id="m7ke141" /><br id="m7ke142" />If I use a single sharpen effect for the whole image, and apply a low radius sharpen I&#8217;ll probably sharpen the motorbike but not the asphalt on the foreground. Instead, using a high radius will probably enhance the foreground but be too strong on the motorbike.<br id="m7ke143" /><br id="m7ke144" />So what I did was to:<br id="m7ke145" /></p>
<ol id="c7-r" style="text-align: justify;">
<li id="c7-r0"><strong>Analyze the image</strong> and see how many areas with different blur levels I need to restore<br id="c7-r1" />In the image below I&#8217;ve colored the areas with different values of blur. <strong><span style="color: #ff0000;"><br id="c7-r2" />Red</span></strong> has almost no blur and need a low radius, <strong>orange</strong> is so-so and <strong>yellow/green</strong> needs a higher radius. No color means: no need to apply sharpness, because there&#8217;s already some bokeh and I don&#8217;t want to increase the noise there. <br id="c7-r3" />Think about this step as the <em>Zone System for sharpness</em>.<br id="c7-r4" /><br id="c7-r5" /><img id="m7ke149" src="http://docs.google.com/a/reallyjapan.com/File?id=d6fp2h6_15cx5qmqf9_b" alt="" /></li>
<li id="c7-r6"><strong>Duplicate the original layer for each different sharpen ratio you need to apply.</strong><br id="c7-r8" />In my case, I duplicated the layer 3 times: red, orange and yellow/green zones.</li>
<li id="c7-r9"><strong>Process each layer with a different sharpen radius.</strong><br id="c7-r11" />Red Layer: I need to focus on small details, in the area where the photo is 100% focused. A radius value of 0.5-0.6 and 40% amount is enough.<br id="c7-r12" />Orange Layer: I need to recover the slightly blurred details, so radius at 0.8-0.9, amount at 30-40%<br id="c7-r13" />Yellow Green layer: Here we need a higher radius, something from 1 to 1.5 and amount at 40-50%.</li>
<li id="c7-r14"><strong>Mask<br id="uaa5" /></strong>Apply a mask to each layer &#8211; Fill the masks with all black to hide everything &#8211; and proceed to paint with a soft white brush to show the details<br id="uaa50" />It&#8217;s important the order of the layers, with the smallest radius on the top and the largest radio on the bottom. Like a&#8230; pyramid of sharpness!</li>
<li id="c7-r14"><strong>Change the opacity</strong> of the layers to adjust the effect.. and it&#8217;s done.<br id="m7ke160" /></li>
</ol>
<p style="text-align: justify;"><br id="uaa52" />At this point, if you want to further increase the sharpness, especially in the highlights, my advice is to use the <strong>High Pass Filter<br id="b5hw0" /></strong></p>
<ol id="b5hw1" style="text-align: justify;">
<li id="b5hw2">Duplicate the original layer on the top of the layer</li>
<li id="b5hw2">Set it as <strong>Overlay Mode</strong></li>
<li id="b5hw2"><strong>Filter &gt; Other &gt; High Pass</strong></li>
<li id="b5hw2">Now you have to refine the Radius value, but you can check that in two ways: Selecting <strong>Preview</strong> you can see the final result on the image, and looking through High Pass you can see the edges created by the filter. Try changing the Radius value until the edges are thin and sharp.<br id="jxb_" />
<div id="i2wo" style="padding: 1em 0pt; text-align: center;">
<div id="ma15" style="padding: 1em 0pt; text-align: left;"><img id="d3d0" style="width: 488px; height: 225px;" src="http://docs.google.com/a/reallyjapan.com/File?id=d6fp2h6_25fxwx4rp9_b" alt="" /></div>
</div>
</li>
<li id="b5hw2"><strong>Again, be selective. <br id="qs5:0" /></strong>Create a mask for the High Pass layer and apply the effect only where you need it. A hint: A Wacom tablet works like a charm for working on masks.<br id="qs5:1" /></li>
</ol>
<p style="text-align: justify;">That&#8217;s all: how I sharpen some of my photos.</p>
<p style="text-align: justify;"><br id="m7ke162" />Maybe this is not a cool, simple, tutorial where you just have to follow a list, step-by-step, and your image will be so sharp that sharper will scratch your monitor.. however I hope to have shown you a different approach on sharpening.<br id="m7ke164" />Happy selective sharpening!<br id="t-te6" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.reallyjapan.com/blog/tutorials/how-to-sharpen-photos-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

