<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0" xmlns:media="http://search.yahoo.com/mrss" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Images of Essex RSS Mash Feed</title>
<description>Recent RSS Mash Posts from Images of Essex</description>
<link>http://www.imagesofessex.co.uk</link>
			 <item>
					<title>Google Map Lightroom Web Gallery</title>
					<description><![CDATA[
					<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>Untitled Document</title></head> <body><p>Now that Lightroom 4 is here geocoding is suddenly centre stage and   images don't feel properly filed unless they have a set of co-ordinates   attached to them.  Whilst LR4 offers many features that are needed to   handle geocoding and maps, it is noticeable that the web module does not   offer the facility to export these pictures in a map format.<br /></p><p>As   part of the redesign of my site I decide that it might be nice to   create a photo gallery driven entirely from a Google map and produced   from Lightroom.</p><p><strong>For those who just want the goodies</strong></p><ul>  <li>    <a href="http://www.shepherdpics.com/Articles/Mapping/index.html">Click here for an example of a site generated using this plug-in</a>  </li>  <li>    <a href="http://www.shepherdpics.com/Articles/Mapping/map.lrwebengine.zip">Click here to download the web gallery as a zip file</a>  </li></ul><p>`To install the web gallery</p><ol>  <li>    Extract the downloaded zip file.<br />  </li>  <li>    Copy the archive contents to one of the following   destinations, depending upon your system. If you have not already done   so, you will must create the Web Galleries folder manually.<br />    <br />    <strong>Mac</strong><br />    Users/<em>username</em>/Library/Application Support/Adobe/Lightroom/Web Galleries/<br />    <strong>Windows XP</strong><br />    C:\Documents and Settings\<em>username</em>\Application Data\Adobe\Lightroom\Web Galleries\<br />    <strong>Windows Vista</strong>/7<br />    C:\Users\<em>username</em>\AppData\Roaming\Adobe\Lightroom\Web Galleries\<br />    In Windows XP, the &ldquo;Application Data&rdquo; directory is usually   hidden.  The same may apply to the AppData folder in Vista. <br />  </li>  <li>    Open Adobe Lightroom and access the Web module. In   the upper right,  under &ldquo;Engine&rdquo;, you should seea new gallery called   Shepherdpics Map.<br /></li></ol><p><strong>For those who want to know how it works</strong><br /></p><p>To borrow some text from <a href="http://www.joecolsonphotography.com/">Joe Colson</a>: </p><p><span style="color: red;">This information is intended for plug-in   developers and those intrepid souls who want to understand what lies   beneath the surface of a Lightroom gallery engine.  It isn&rsquo;t my   intention to make this series of posts a definitive guide to Lightroom   gallery engine design or anatomy.  Instead, I&rsquo;d recommend starting with   the <a href="http://www.adobe.com/devnet/photoshoplightroom/">Lightroom SDK 2.0 Programmers Guide and Lightroom 2 SDK</a> available from Adobe.  The Adobe guide is a good starting point, but   you can learn even more by dissecting an actual gallery engine,   including those that are included in the SDK.</span><br /></p><p>As per usual I am standing on the shoulders of giants here and in this case the whole thing is based on <a href="http://www.sitepoint.com/google-maps-api-jquery/">this article from Sitepoint</a> and some code from <a href="http://www.joecolsonphotography.com/wordpress/2009/11/17/geocoded-lightroom-web-gallery-plugin-part-1/">Joe Colson's article on a geocoding plug-in</a>.</p><p>The   first problem to solve was how to generate an xml file of   co-ordinates.  To do this I added the following code to the   manifest.lrweb file.<br /></p><code>AddGridPages {<br />filetype=&quot;xml&quot;,<br />template=&quot;markers.xml&quot;,<br />rows=1000,<br />columns=1<br />}<br /></code> <p>this uses the index page markers.xml to generate the xml doc</p><code><p>&lt;markers&gt;<br />    &lt;lr:ThumbnailGrid&gt;<br />  &lt;lr:GridPhotoCell&gt;<br />  &lt;marker&gt;<br />  &lt;name&gt;&lt;% =image.metadata.title%&gt;&lt;/name&gt;<br />  &lt;thumb&gt;content/bin/images/thumb/&lt;%= image.exportFilename %&gt;.jpg&lt;/thumb&gt;<br />  &lt;desc&gt;&lt;% =image.metadata.description%&gt;&lt;/desc&gt;<br />  &lt;largePage&gt;source/&lt;%= image.exportFilename %&gt;_large.html&lt;/largePage&gt;<br />  &lt;lat&gt;&lt;% =lat%&gt;&lt;/lat&gt;<br />  &lt;lng&gt;&lt;% =lon%&gt;&lt;/lng&gt;<br />  &lt;/marker&gt; <br />  &lt;%  end  %&gt;<br />  &lt;/lr:GridPhotoCell&gt; <br />  &lt;/lr:ThumbnailGrid&gt;<br />  &lt;/markers&gt;</p></p></code><p>Which just builds up the xml file from the details of each image. The only tricky bit is converiting the coordinates to decimal degrees which is achieved by this bit of code</p><code><p>&lt;% <br />  local gpsData = image.metadata.GPS<br />  local lat<br />  local lon</p><p>if gpsData ~= &quot;&quot; then<br />  local iter = string.gmatch(image.metadata.GPS, &quot;%d+&quot;)<br />  lat = iter() + (iter() * 60 + iter()) / 3600<br />  lon = iter() + (iter() * 60 + iter()) / 3600<br />  if string.find(gpsData, &quot;S&quot;) then<br />  lat = -lat<br />  end<br />  if string.find(gpsData, &quot;W&quot;) then<br />  lon = -lon<br />  end<br />%&gt;</p></code>   <p>Then it was just a question of modifying the javascript to pickup the values from the generate xml file.  Using JQuery this is easily achieved like this:</p><code>  var name = $(this).find('name').text();<br />var desc = $(this).find('desc').text();<br />var largePage = $(this).find('largePage').text(); </code><p>The rest of the code is pretty standard stuff from the SDK.</p><p>I hope you found this of use and please leave a comment if you use the code anywhere,  I love to know who reads this stuff</p>  </body></html><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7305559788664993980-2371411061884695134?l=blog.shepherdpics.com' alt='' /></div>
<p><a href="http://feedads.g.doubleclick.net/~a/O3MfFLBlFwWJJ2hcYDzxEt2XsnU/0/da"><img src="http://feedads.g.doubleclick.net/~a/O3MfFLBlFwWJJ2hcYDzxEt2XsnU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/O3MfFLBlFwWJJ2hcYDzxEt2XsnU/1/da"><img src="http://feedads.g.doubleclick.net/~a/O3MfFLBlFwWJJ2hcYDzxEt2XsnU/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Shepherdpics?a=8RS0CrMYVls:Nq9_RlZDrV8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Shepherdpics?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Shepherdpics/~4/8RS0CrMYVls" height="1" width="1"/>
					]]></description>
					<link>http://feedproxy.google.com/~r/Shepherdpics/~3/8RS0CrMYVls/google-map-lightroom-webgallery.html</link>
					<pubDate>Tue, 17 Apr 2012 21:11:00 +0000 GMT</pubDate></item>
			 <item>
					<title>Mike Otley is photographer of the month for April</title>
					<description><![CDATA[
					<div style="text-align: left;">Our photographer this month is Bracknell based <a href="http://www.mophotos.co.uk/">Mike Otley</a>.&nbsp; Mikes real love is car photography and he produces some fantasticimages of them,&nbsp; <a href="http://www.mophotos.co.uk/">his website</a> is worth a visit.</div><br /><div class="separator" style="clear: both; text-align: center;"><a href="http://www.mophotos.co.uk/imgs/gallery/673/673_3093194154a62f0b70cd6d.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="320" src="http://www.mophotos.co.uk/imgs/gallery/673/673_3093194154a62f0b70cd6d.jpg" width="242" /></a></div><div class="separator" style="clear: both; text-align: center;"><br /></div><br /><br /><div style="text-align: center;">Porsche Cayenne Biturbo</div><div style="text-align: center;"><span style="font-size: x-small;"><i>by Mike Otley</i></span></div><div style="text-align: center;"><br /></div><hr width="75%" /><br /><a href="http://blog.shepherdpics.com/search/label/Photographer%20of%20the%20Month">Previous&nbsp; Photographers of the Month</a><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7305559788664993980-6331150676484675804?l=blog.shepherdpics.com' alt='' /></div>
<p><a href="http://feedads.g.doubleclick.net/~a/zpS9iTT0uY4izZ-061-Ianbk_mA/0/da"><img src="http://feedads.g.doubleclick.net/~a/zpS9iTT0uY4izZ-061-Ianbk_mA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/zpS9iTT0uY4izZ-061-Ianbk_mA/1/da"><img src="http://feedads.g.doubleclick.net/~a/zpS9iTT0uY4izZ-061-Ianbk_mA/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Shepherdpics?a=t6YqQRrPJAw:DJeFDJcLwnU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Shepherdpics?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Shepherdpics/~4/t6YqQRrPJAw" height="1" width="1"/>
					]]></description>
					<link>http://feedproxy.google.com/~r/Shepherdpics/~3/t6YqQRrPJAw/mike-otley-is-photographer-of-month-for.html</link>
					<pubDate>Sun, 01 Apr 2012 10:36:00 +0000 GMT</pubDate></item>
			 <item>
					<title>Think Tank Streetwalker Hard Drive Backpack</title>
					<description><![CDATA[
					At the beginning of the year I was fortunate enough to spend nearly a month in New Zealand.&nbsp; It truly is a wonderful place for photography and I will at some point be posting some of the pictures on this blog.<br /><br />Whilst planning the trip, it became obvious that I did not have a camera bag that would be suitable for taking as carry-on luggage.&nbsp; Being a fan of Think Tank bags I took a look at their range for something suitable.&nbsp; I looked at their Airport roller bags first (thanks go to <a href="http://bobswildimages.net/">Bob Johnson</a> for letting me look through his vast Think Tank range).&nbsp; Whilst the rollers were beautifully made, like everything Think Tank do, they were not really ideal as fully loaded I would easily go over my carry on weight allowance and more importantly once I was in NZ I would need a rucksack or camera bag as well for use on the actual shoots.<br /><br />After much looking round the web at various reviews I decided on the Think Tank <a href="http://bobswildimages.net/">Streetwalker Hard Drive Backpack</a> :<br /><br /><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://www.thinktankphoto.com/product-images/xlarge/StreetWalker-HardDrive-4.jpg" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="244" src="http://www.thinktankphoto.com/product-images/xlarge/StreetWalker-HardDrive-4.jpg" width="320" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Photo by ThinkTank Photo</td></tr></tbody></table>A few points attracted me to the Streetwalker Hard Drive:<br /><ul><li>It's from Think Tank - their products just ooze quality.</li><li>Carry on luggage size</li><li>Laptop slot - to save hassle at Airport Security. </li></ul>In use it proved an excellent bag, it's clean lines meant it fit exactly under the seat in-front on Singapore Airlines.&nbsp; Allowing me to access to all my kit through out the flight: for photos from the airplane windows, reading material or even the carefree 5 hours I spent keywording the 9500 images I took.&nbsp; The only photographic items I put in my suitcase were my tripod and my pro-speed belt, as removing that keeps the bag nice and square for storing in airplanes, etc<br /><br />Rather than lug a laptop everywhere I just used a tiny netbook, which meant the laptop slot had room for magazines and other A4 documents that I wanted to keep flat.&nbsp; This slot makes the bag worth buying on it's own with dead easy access to your laptop or documents in seconds.&nbsp; Security scans in airports ask for laptops to be scanned seperatly and the access in this bag made it a doddle.<br /><br /><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://4.bp.blogspot.com/-34V1XLsjfaw/T0vWAg1PgII/AAAAAAAABAk/T81np3PYYTc/s1600/CS20120114-NewZealand7282.jpg" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="240" src="http://4.bp.blogspot.com/-34V1XLsjfaw/T0vWAg1PgII/AAAAAAAABAk/T81np3PYYTc/s320/CS20120114-NewZealand7282.jpg" width="320" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Packed for travelling between hotels in New Zealand<br />The first aid kit came out for flying as it upsets the security guards<br />The gap bottom left contained the Canon G9 that took the photo.</td><td class="tr-caption" style="text-align: center;"></td><td class="tr-caption" style="text-align: center;"><br /></td></tr></tbody></table>Travelling between hotels I could fill it with all my camera and computer gear, without worrying about damaging them and being able to grab my camera easily as we reached another "WOW" bit of scenery.&nbsp; The distances in NZ are really short but it took ages to get anywhere as I kept having to stop and snap the scenery.<br /><br /><br /><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://4.bp.blogspot.com/-Hcx9XWtMazw/T0vWCrmEAaI/AAAAAAAABA0/rxMbrOhm3WU/s1600/CS20120114-NewZealand7284.jpg" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="240" src="http://4.bp.blogspot.com/-Hcx9XWtMazw/T0vWCrmEAaI/AAAAAAAABA0/rxMbrOhm3WU/s320/CS20120114-NewZealand7284.jpg" width="320" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Big clear pockets in the lid make finding things really easy.</td><td class="tr-caption" style="text-align: center;"><br /></td><td class="tr-caption" style="text-align: center;"><br /></td><td class="tr-caption" style="text-align: center;"><br /></td></tr></tbody></table><br /><br />For Morning or evening Landscape sessions I could strip out the bag and just leave in my camera, lenses and filters.&nbsp; Then once the tripos straps are attached I could fix the tripod to the back of the bag and I had a great landscape photographers rucksack.&nbsp; For daytime expeditions I would leave the tripod behind, bung a rain jacket in one of the empty slots and a couple of bottles of water in the expanding side pockets and it was comfortable for very long walks.<br /><br />For more dynamic trips I used my pro-speed belt and the Think tank modular system to allow me to have access to lenses as quick as possible.<br /><br /><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://3.bp.blogspot.com/-DA7x3YNv1J4/T0vWDVi3cGI/AAAAAAAABA8/1LC4MRVlG5U/s1600/CS20120114-NewZealand7285.jpg" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="240" src="http://3.bp.blogspot.com/-DA7x3YNv1J4/T0vWDVi3cGI/AAAAAAAABA8/1LC4MRVlG5U/s320/CS20120114-NewZealand7285.jpg" width="320" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">A fair bit of gear for one bag</td></tr></tbody></table><br />&nbsp;So what did I put in it:<br /><ul><li>Laptop Slot</li><ul><li>Asus Netbook</li><li>Amazon Kindle</li><li>2 Magazines</li><li>Travel Documentation</li></ul><li>Main Compartment</li><ul><li>Canon 5DmkII</li><li>Canon G9 </li><li>Canon EF 24-105 f/4 L Lens</li><li>Canon EF 17-40 f/4 L Lens in Think Tank Modular Pouch</li><li>Canon EF 300mm f/4 L Prime Lens in Think Tank Modular Pouch</li><li>Canon 1.4x extender</li><li>LEE Filter Holder</li><li>2 x LEE filter rings </li><li>3 x LEE Soft Grads</li><li>3 x LEE Hard Grads</li><li>LEE Big Stopper&nbsp; </li><li>8 SD Cards</li><li>2 Cardreaders</li><li>Portable harddrive</li><li>2 x Spare Batteries</li><li>2 x Battery Chargers</li><li>3 x Cleaning Cloths</li><li>2 x Power converters</li><li>Netbook power supply</li><li>Power lead for battery chargers</li><li>Waterproof cover</li></ul><li>Lid Pockets</li><ul><li>3 x iPhone power cables</li><li>Kindle power cable</li><li>2 x remote releases</li><li>HDD Cable</li><li>Tripod straps</li></ul><li>Front tripod Pocket </li><ul><li>Trek Towel for those damp days</li></ul><li>Side Pockets</li><ul><li>Nothing!</li></ul></ul><div class="separator" style="clear: both; text-align: left;">I kept the side pockets clear so that I could use them for water bottles on hikes,etc.&nbsp; Due to the way I constantly changed the packing of the bag to meet the changing demands of the trip I left the front outside organiser pockets empty to make it easier to change things around and so I could put my wallet and keys in there on walks.</div><div class="separator" style="clear: both; text-align: left;"><br /></div><div class="separator" style="clear: both; text-align: left;">I have been trying to think of anything I would change about this bag and I really can't.</div><br /><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7305559788664993980-6406451938615190749?l=blog.shepherdpics.com' alt='' /></div>
<p><a href="http://feedads.g.doubleclick.net/~a/EaQ2HFRMpjwmYZiPpnBE3C7XVlA/0/da"><img src="http://feedads.g.doubleclick.net/~a/EaQ2HFRMpjwmYZiPpnBE3C7XVlA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/EaQ2HFRMpjwmYZiPpnBE3C7XVlA/1/da"><img src="http://feedads.g.doubleclick.net/~a/EaQ2HFRMpjwmYZiPpnBE3C7XVlA/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Shepherdpics?a=_1EHvUPh18s:mtoW--h844I:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Shepherdpics?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Shepherdpics/~4/_1EHvUPh18s" height="1" width="1"/>
					]]></description>
					<link>http://feedproxy.google.com/~r/Shepherdpics/~3/_1EHvUPh18s/think-tank-streetwalker-hard-drive.html</link>
					<pubDate>Thu, 01 Mar 2012 18:49:00 +0000 GMT</pubDate>
						<media:thumbnail url="http://4.bp.blogspot.com/-34V1XLsjfaw/T0vWAg1PgII/AAAAAAAABAk/T81np3PYYTc/s72-c/CS20120114-NewZealand7282.jpg"/>
						<media:content url="http://4.bp.blogspot.com/-34V1XLsjfaw/T0vWAg1PgII/AAAAAAAABAk/T81np3PYYTc/s72-c/CS20120114-NewZealand7282.jpg" type="image/jpeg" />
</item>
			 <item>
					<title>David Langan is photographer of the month for March</title>
					<description><![CDATA[
					<div style="text-align: left;"><a href="http://www.thenorthlight.co.uk/">David Langan</a> is a landscape photographer based in Aberdeen.&nbsp; His images reveal his overriding passion for the pure unsullied landscape, a landscape devoid of the apparent hand of man.  <a href="http://www.thenorthlight.co.uk/">His website</a> is well worth a visit.</div><br /><div class="separator" style="clear: both; text-align: center;"><a href="http://www.thenorthlight.co.uk/filehandler/c1d962770fe645b5b199f9b849c53ba8/ea626ed532ae454ba24d66c5f2f358d8?size=403x600" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="320" src="http://www.thenorthlight.co.uk/filehandler/c1d962770fe645b5b199f9b849c53ba8/ea626ed532ae454ba24d66c5f2f358d8?size=403x600" width="213" /></a></div><div class="separator" style="clear: both; text-align: center;"><br /></div><div class="separator" style="clear: both; text-align: center;"><br /></div><div style="text-align: center;">&nbsp;Highland Harmony</div><div style="text-align: center;"><span style="font-size: x-small;"><i>by David Langan</i></span></div><div style="text-align: center;"><br /></div><hr width="75%" /><br /><a href="http://blog.shepherdpics.com/search/label/Photographer%20of%20the%20Month">Previous&nbsp; Photographers of the Month</a><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7305559788664993980-2608648560987447359?l=blog.shepherdpics.com' alt='' /></div>
<p><a href="http://feedads.g.doubleclick.net/~a/7oksi1FY8Aaw7cBxhHo0ZqIKRiY/0/da"><img src="http://feedads.g.doubleclick.net/~a/7oksi1FY8Aaw7cBxhHo0ZqIKRiY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/7oksi1FY8Aaw7cBxhHo0ZqIKRiY/1/da"><img src="http://feedads.g.doubleclick.net/~a/7oksi1FY8Aaw7cBxhHo0ZqIKRiY/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Shepherdpics?a=hoEHlmlcrhY:ogm_k71gZkg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Shepherdpics?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Shepherdpics/~4/hoEHlmlcrhY" height="1" width="1"/>
					]]></description>
					<link>http://feedproxy.google.com/~r/Shepherdpics/~3/hoEHlmlcrhY/david-langan-is-photographer-of-month.html</link>
					<pubDate>Thu, 01 Mar 2012 10:23:00 +0000 GMT</pubDate></item>
			 <item>
					<title>Coltrane Koh is photographer of the month for February</title>
					<description><![CDATA[
					<div style="text-align: left;">Our photographer for February is <a href="http://www.coleshot.co.uk/">Coltrane Koh</a>.&nbsp; His website shows a versatility for a huge range of&nbsp;  subjects,&nbsp;&nbsp; am sure there is something for everyone at <a href="http://www.coleshot.co.uk/">http://www.coleshot.co.uk/</a></div><br /><div class="separator" style="clear: both; text-align: center;"><a href="http://www.coleshot.co.uk/images/sites/18/gallery/normal/1423831_1262695473.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="235" src="http://www.coleshot.co.uk/images/sites/18/gallery/normal/1423831_1262695473.jpg" width="320" /></a></div><br /><br /><div style="text-align: center;">The Blissed Days Of Snow</div><div style="text-align: center;"><span style="font-size: x-small;"><i>by Coltrane Koh</i></span></div><div style="text-align: center;"><br /></div><hr width="75%" /><br /><a href="http://blog.shepherdpics.com/search/label/Photographer%20of%20the%20Month">Previous&nbsp; Photographers of the Month</a><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7305559788664993980-3541750041635877772?l=blog.shepherdpics.com' alt='' /></div>
<p><a href="http://feedads.g.doubleclick.net/~a/0i2FkIK0gelKCFil2QgZsYSiHTQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/0i2FkIK0gelKCFil2QgZsYSiHTQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/0i2FkIK0gelKCFil2QgZsYSiHTQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/0i2FkIK0gelKCFil2QgZsYSiHTQ/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Shepherdpics?a=lUqWQHXGKh0:YTCJU3tOw1A:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Shepherdpics?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Shepherdpics/~4/lUqWQHXGKh0" height="1" width="1"/>
					]]></description>
					<link>http://feedproxy.google.com/~r/Shepherdpics/~3/lUqWQHXGKh0/coltrane-koh-is-photographer-of-month.html</link>
					<pubDate>Wed, 01 Feb 2012 10:14:00 +0000 GMT</pubDate></item>
			 <item>
					<title>Lightroom Configuration Backup</title>
					<description><![CDATA[
					The other day I hadn't noticed that the power lead had dropped out of my laptop when the battery was already virtually empty.&nbsp; It had so little power left so that instead of hibernating, it just died on me.&nbsp; In the middle of a Lightroom session.<br /><br />The problem came that when I restarted Lightroom was not in a happy state.&nbsp; It had returned to default and had forgotten all my presets, plugins and export settings.&nbsp; Luckily I could drag them back from a backup but it was a bit of a pain.&nbsp; So I was interested to find this <a href="http://thephotogeek.com/lightroom/lr-backup/">Lightroom configuration backup plug-in</a>, which creates a zip file of all your settings and can be setup to do it automatically.<br /><br />Another feature of it is the ability to zip up your catalogue backups,&nbsp; which if you combined it with my tip on how to <a href="http://blog.shepherdpics.com/2010/04/deleting-old-lightroom-backups.html">automatically delete old backups</a> could really save some disk space.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7305559788664993980-6852621841977129848?l=blog.shepherdpics.com' alt='' /></div>
<p><a href="http://feedads.g.doubleclick.net/~a/OrC-xJ7lgZEeDO8LTJ8AuTLiuQk/0/da"><img src="http://feedads.g.doubleclick.net/~a/OrC-xJ7lgZEeDO8LTJ8AuTLiuQk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/OrC-xJ7lgZEeDO8LTJ8AuTLiuQk/1/da"><img src="http://feedads.g.doubleclick.net/~a/OrC-xJ7lgZEeDO8LTJ8AuTLiuQk/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Shepherdpics?a=m8HBsQsSlhw:drMeDQSxZrw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Shepherdpics?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Shepherdpics/~4/m8HBsQsSlhw" height="1" width="1"/>
					]]></description>
					<link>http://feedproxy.google.com/~r/Shepherdpics/~3/m8HBsQsSlhw/lightroom-configuration-backup.html</link>
					<pubDate>Wed, 11 Jan 2012 22:23:00 +0000 GMT</pubDate></item>
			 <item>
					<title>Outdoor Photographer of the Year 2011</title>
					<description><![CDATA[
					Since knowing I was shortlisted in the <a href="http://www.opoty.co.uk/">Outdoor Photographer of the Year Competition</a> a few people have enquired how I got on.&nbsp; Well it appears that I will have to settle for shortlisting only this year.<br /><br />The strange thing about the system is they tell you that "one or more" of the images you entered has been shortlisted which means that between 4 and 12 of my shots were shortlisted.&nbsp; Here they are in all their glory - I'll let you decide which ones were shortlisted as your guess is as good as mine:<br /><br /><b>Category - At The Waters Edge </b><br /><br /><br /><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://1.bp.blogspot.com/-CU0IfkrpZGE/TtEXQsA907I/AAAAAAAAAYw/F8a1RyR2noU/s1600/Isle+in+the+Storm.jpg" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="263" src="http://1.bp.blogspot.com/-CU0IfkrpZGE/TtEXQsA907I/AAAAAAAAAYw/F8a1RyR2noU/s400/Isle+in+the+Storm.jpg" width="400" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Isle in the Storm</td></tr></tbody></table><br /><div class="separator" style="clear: both; text-align: center;"></div><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://4.bp.blogspot.com/-BAqhEOIJSEY/TtEXTQwEyMI/AAAAAAAAAY4/vJC8aukNh3c/s1600/Leigh+Creek.jpg" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="400" src="http://4.bp.blogspot.com/-BAqhEOIJSEY/TtEXTQwEyMI/AAAAAAAAAY4/vJC8aukNh3c/s400/Leigh+Creek.jpg" width="256" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Leigh Creek</td></tr></tbody></table><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://3.bp.blogspot.com/-pkW53Lk6OKg/TtEXg7BKecI/AAAAAAAAAZg/h33ZOtJREBg/s1600/Snaking+Ashore.jpg" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="320" src="http://3.bp.blogspot.com/-pkW53Lk6OKg/TtEXg7BKecI/AAAAAAAAAZg/h33ZOtJREBg/s320/Snaking+Ashore.jpg" width="213" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Snaking Ashore</td></tr></tbody></table><br /><br /><b>Category - British Landscapes</b><br /><br /><br /><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://1.bp.blogspot.com/-ToV3u6zIA6U/TtEXIj_d60I/AAAAAAAAAYg/XM4i3KITzWo/s1600/Curbar+Gap.jpg" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="263" src="http://1.bp.blogspot.com/-ToV3u6zIA6U/TtEXIj_d60I/AAAAAAAAAYg/XM4i3KITzWo/s320/Curbar+Gap.jpg" width="400" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Curbar Gap</td></tr></tbody></table><table cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://1.bp.blogspot.com/-4Mi4KwCfEgE/TtEXkQNnD2I/AAAAAAAAAZo/FHU3kSlru3U/s1600/Start+Point+Light.jpg" imageanchor="1" style="clear: left; margin-bottom: 1em; margin-left: auto; margin-right: auto;"><img border="0" height="400" src="http://1.bp.blogspot.com/-4Mi4KwCfEgE/TtEXkQNnD2I/AAAAAAAAAZo/FHU3kSlru3U/s400/Start+Point+Light.jpg" width="262" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Start Point Light</td></tr></tbody></table><a href="http://4.bp.blogspot.com/-ZGTwmZZdzus/TtEXBS8ea6I/AAAAAAAAAYY/CmN1GjTbH7w/s1600/Coniston+Sunset.jpg" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"></a><br /><br /><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://2.bp.blogspot.com/-wt-8ZbkWOLA/TtEW_NK1fSI/AAAAAAAAAYQ/VdnTxyglg8E/s1600/Ashness+Landing.jpg" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="266" src="http://2.bp.blogspot.com/-wt-8ZbkWOLA/TtEW_NK1fSI/AAAAAAAAAYQ/VdnTxyglg8E/s400/Ashness+Landing.jpg" width="400" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Ashness Landing</td></tr></tbody></table><br /><br /><b>Category - Dawn To Dusk</b><br /><br /><br /><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://3.bp.blogspot.com/-OhtzSbr994M/TtEXMDDkQoI/AAAAAAAAAYo/NrNtlk2H7xc/s1600/Gull+Rock+Blues.jpg" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="266" src="http://3.bp.blogspot.com/-OhtzSbr994M/TtEXMDDkQoI/AAAAAAAAAYo/NrNtlk2H7xc/s400/Gull+Rock+Blues.jpg" width="400" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Gull Rock Blues</td></tr></tbody></table><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://4.bp.blogspot.com/-ZGTwmZZdzus/TtEXBS8ea6I/AAAAAAAAAYY/CmN1GjTbH7w/s1600/Coniston+Sunset.jpg" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="400" src="http://4.bp.blogspot.com/-ZGTwmZZdzus/TtEXBS8ea6I/AAAAAAAAAYY/CmN1GjTbH7w/s400/Coniston+Sunset.jpg" width="266" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Coniston Sunset</td></tr></tbody></table><br /><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://4.bp.blogspot.com/-MkDgbKSwIi0/TtEXbaetqyI/AAAAAAAAAZQ/nWhgeq6y_B4/s1600/Morning+Mist.jpg" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="400" src="http://4.bp.blogspot.com/-MkDgbKSwIi0/TtEXbaetqyI/AAAAAAAAAZQ/nWhgeq6y_B4/s400/Morning+Mist.jpg" width="265" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Morning Mist</td></tr></tbody></table><br /><br /><b>Category - On the Streets</b><br /><br /><br /><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://4.bp.blogspot.com/-Phir3mjp9eU/TtEXYx5_oqI/AAAAAAAAAZI/tymqIpcSNd0/s1600/Lunchtime.jpg" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="270" src="http://4.bp.blogspot.com/-Phir3mjp9eU/TtEXYx5_oqI/AAAAAAAAAZI/tymqIpcSNd0/s400/Lunchtime.jpg" width="400" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Lunchtime</td></tr></tbody></table><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://2.bp.blogspot.com/-LJ0oq6DIuHs/TtEXWdhnzlI/AAAAAAAAAZA/35jH0BpPhrE/s1600/Looking+at+Legs.jpg" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="246" src="http://2.bp.blogspot.com/-LJ0oq6DIuHs/TtEXWdhnzlI/AAAAAAAAAZA/35jH0BpPhrE/s400/Looking+at+Legs.jpg" width="400" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Looking at Legs</td></tr></tbody></table><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://3.bp.blogspot.com/-3DODcHi8HGU/TtEXe9zeX6I/AAAAAAAAAZY/Q9PyW4L0LQ8/s1600/River+Pheonix.jpg" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="265" src="http://3.bp.blogspot.com/-3DODcHi8HGU/TtEXe9zeX6I/AAAAAAAAAZY/Q9PyW4L0LQ8/s400/River+Pheonix.jpg" width="400" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">River Pheonix</td></tr></tbody></table><br /><div class="separator" style="clear: both; text-align: center;"><a href="http://2.bp.blogspot.com/-9vHYnsYkoq4/TtES-ZctAiI/AAAAAAAAAYI/sEjpGUAfHZ4/s1600/Smudge-2.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><br /></a></div><br /><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7305559788664993980-5240802628097400473?l=blog.shepherdpics.com' alt='' /></div>
<p><a href="http://feedads.g.doubleclick.net/~a/liGCZrG8U6GwMNV7Z25CJ_Q8dvo/0/da"><img src="http://feedads.g.doubleclick.net/~a/liGCZrG8U6GwMNV7Z25CJ_Q8dvo/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/liGCZrG8U6GwMNV7Z25CJ_Q8dvo/1/da"><img src="http://feedads.g.doubleclick.net/~a/liGCZrG8U6GwMNV7Z25CJ_Q8dvo/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Shepherdpics?a=NvAFRlcLc5c:7ETXMAtrwz8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Shepherdpics?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Shepherdpics/~4/NvAFRlcLc5c" height="1" width="1"/>
					]]></description>
					<link>http://feedproxy.google.com/~r/Shepherdpics/~3/NvAFRlcLc5c/outdoor-photographer-of-year-2011.html</link>
					<pubDate>Wed, 04 Jan 2012 16:36:00 +0000 GMT</pubDate>
						<media:thumbnail url="http://1.bp.blogspot.com/-CU0IfkrpZGE/TtEXQsA907I/AAAAAAAAAYw/F8a1RyR2noU/s72-c/Isle+in+the+Storm.jpg"/>
						<media:content url="http://1.bp.blogspot.com/-CU0IfkrpZGE/TtEXQsA907I/AAAAAAAAAYw/F8a1RyR2noU/s72-c/Isle+in+the+Storm.jpg" type="image/jpeg" />
</item>
			 <item>
					<title>Peter Simonides is photographer of the month for January</title>
					<description><![CDATA[
					<div style="text-align: center;"><div style="text-align: left;">I have been recently really enjoying the abstract photographic work of <a href="http://simo.500px.com/portfolio">Peter Simonides</a>. Really unusual and interesting wor that is well worth a visit to <a href="http://simo.500px.com/portfolio">his website</a>.</div><br /><div class="separator" style="clear: both; text-align: center;"><a href="http://simo.500px.com/portfolio"><img border="0" height="320" src="http://djlhggipcyllo.cloudfront.net/3205241/bfb500d1d09a38b0730c343a3aa0b7c104437ec2/4.jpg" width="320" /></a></div><div class="separator" style="clear: both; text-align: center;"><br /></div><br />&nbsp;Paper</div><div style="text-align: center;"><span style="font-size: x-small;"><i>by Peter Simonides</i></span></div><div style="text-align: center;"><br /></div><hr width="75%" /><br /><a href="http://blog.shepherdpics.com/search/label/Photographer%20of%20the%20Month">Previous&nbsp; Photographers of the Month</a><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7305559788664993980-6694489785334332816?l=blog.shepherdpics.com' alt='' /></div>
<p><a href="http://feedads.g.doubleclick.net/~a/mvnVoMSqMXrTbb4zNjwioruNTV8/0/da"><img src="http://feedads.g.doubleclick.net/~a/mvnVoMSqMXrTbb4zNjwioruNTV8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/mvnVoMSqMXrTbb4zNjwioruNTV8/1/da"><img src="http://feedads.g.doubleclick.net/~a/mvnVoMSqMXrTbb4zNjwioruNTV8/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Shepherdpics?a=8Sxn6UZ3ORQ:F5oniXF4syw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Shepherdpics?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Shepherdpics/~4/8Sxn6UZ3ORQ" height="1" width="1"/>
					]]></description>
					<link>http://feedproxy.google.com/~r/Shepherdpics/~3/8Sxn6UZ3ORQ/peter-simonides-is-photographer-of.html</link>
					<pubDate>Sun, 01 Jan 2012 10:05:00 +0000 GMT</pubDate></item>
			 <item>
					<title>Lighten the land, don't darken the sky</title>
					<description><![CDATA[
					A while back I was teaching someone how to use ND grads and I was explaining how putting the dark area of the grad over the sky has the effect of making the land lighter.  They looked at me as though I had gone mad!<br /><br />Eventually they began to understand that you are not really darkening the sky, you are in staid lightening the land/&nbsp; The key is to think that you are using the graduated filter to reduce the exposure range into&nbsp; something the camera can cope with so that you don't end up with blocked shadows or blown out highlights.<br /><br />I said I would create an example for them to show the effect of using a graduated filter.&nbsp; The below images show the rather subtle effect of a 0.6nd grad in use.&nbsp; Moving your mouse over the below should show the effect of inserting the filter:<br /><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><img onmouseout="this.src='http://3.bp.blogspot.com/-b-u1afulsGw/TtEovNnkWEI/AAAAAAAAAbM/4nVQSi4T1co/s400/Before.jpg'" onmouseover="this.src='http://2.bp.blogspot.com/-i4Z7VOjNe0k/TtEouDO9HKI/AAAAAAAAAbE/l6fAEsFT-pw/s400/After.jpg'" src="http://3.bp.blogspot.com/-b-u1afulsGw/TtEovNnkWEI/AAAAAAAAAbM/4nVQSi4T1co/s400/Before.jpg" style="margin-left: auto; margin-right: auto;" /></td></tr><tr><td class="tr-caption" style="text-align: center;">Mouse over to see before and after</td></tr></tbody></table><div class="" style="clear: both; text-align: center;">Hopefully you can see that we have slightly darkened the top left corner of the image and brightened the right horizon area by using the graduated filter at a jaunty angle like this.  </div><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://1.bp.blogspot.com/-L7lan7CgkhM/TtEuK8Vj0oI/AAAAAAAAAbs/xBWtlulHjnw/s1600/grad.jpg" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="376" src="http://1.bp.blogspot.com/-L7lan7CgkhM/TtEuK8Vj0oI/AAAAAAAAAbs/xBWtlulHjnw/s400/grad.jpg" width="400" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">ND Grad Position</td></tr></tbody></table>The angle of the grad filter was to match up with the way the early sunrise was lighting the land from one side. Although it is usual to use grads in a more upright position it is important to pay attention to balancing the position as well as the intensity of the light.<br /><br />Here are the before and after images in case the mouse over doesn't work for you.&nbsp; Try opening them in seperate tabs of your web browser &amp; switching between them.<br /><br /> <br /><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://2.bp.blogspot.com/-emaMnUm_Xtw/TtEqVcURcII/AAAAAAAAAbY/Z9sbMWYftWM/s1600/Before.jpg" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="267" src="http://2.bp.blogspot.com/-emaMnUm_Xtw/TtEqVcURcII/AAAAAAAAAbY/Z9sbMWYftWM/s400/Before.jpg" width="400" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Before - No ND Grad</td></tr></tbody></table><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://1.bp.blogspot.com/-M3xS6vbjTuM/TtEqeh0XdLI/AAAAAAAAAbk/zvUzo6djyQA/s1600/After.jpg" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="267" src="http://1.bp.blogspot.com/-M3xS6vbjTuM/TtEqeh0XdLI/AAAAAAAAAbk/zvUzo6djyQA/s400/After.jpg" width="400" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">After - With ND Grad</td></tr></tbody></table><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7305559788664993980-5328751954275195560?l=blog.shepherdpics.com' alt='' /></div>
<p><a href="http://feedads.g.doubleclick.net/~a/8prV_kVyU-VH88HkBK1EzsSVdDo/0/da"><img src="http://feedads.g.doubleclick.net/~a/8prV_kVyU-VH88HkBK1EzsSVdDo/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/8prV_kVyU-VH88HkBK1EzsSVdDo/1/da"><img src="http://feedads.g.doubleclick.net/~a/8prV_kVyU-VH88HkBK1EzsSVdDo/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Shepherdpics?a=xk66_51Hw_U:0NUqpmbDQbg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Shepherdpics?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Shepherdpics/~4/xk66_51Hw_U" height="1" width="1"/>
					]]></description>
					<link>http://feedproxy.google.com/~r/Shepherdpics/~3/xk66_51Hw_U/lighten-land-dont-darken-sky.html</link>
					<pubDate>Thu, 29 Dec 2011 13:02:00 +0000 GMT</pubDate>
						<media:thumbnail url="http://3.bp.blogspot.com/-b-u1afulsGw/TtEovNnkWEI/AAAAAAAAAbM/4nVQSi4T1co/s72-c/Before.jpg"/>
						<media:content url="http://3.bp.blogspot.com/-b-u1afulsGw/TtEovNnkWEI/AAAAAAAAAbM/4nVQSi4T1co/s72-c/Before.jpg" type="image/jpeg" />
</item>
			 <item>
					<title>Can I call you a cab sir ?</title>
					<description><![CDATA[
					The lovely people at <a href="http://www.heathrowairportcarsuk.com/">http://www.heathrowairportcarsuk.com/</a> are now using my image of Tower Bridge as the header image of their website:<br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="http://1.bp.blogspot.com/-rNtw1NyZwz0/Tu-G3209KfI/AAAAAAAAAb0/Fsfy0TcNvrQ/s1600/HeathrowCars.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="190" src="http://1.bp.blogspot.com/-rNtw1NyZwz0/Tu-G3209KfI/AAAAAAAAAb0/Fsfy0TcNvrQ/s400/HeathrowCars.png" width="400" /></a></div><br />The Original image of tower bridge can be found <a href="http://www.shepherdpics.com/Exhibitions/LondonLight/source/CS20080929_London8589_large.html">here</a>.<br /><br /><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://www.blogger.com/goog_884802830" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="268" src="http://www.shepherdpics.com/Exhibitions/LondonLight/content/bin/images/large/CS20080929_London8589.jpg" width="400" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;"><a href="http://www.shepherdpics.com/Exhibitions/LondonLight/source/CS20080929_London8589_large.html">Tower Bridge</a></td></tr></tbody></table><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7305559788664993980-3740292658343552201?l=blog.shepherdpics.com' alt='' /></div>
<p><a href="http://feedads.g.doubleclick.net/~a/GB_C4U9kKqxJZkh_h4-JfpTb_yQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/GB_C4U9kKqxJZkh_h4-JfpTb_yQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/GB_C4U9kKqxJZkh_h4-JfpTb_yQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/GB_C4U9kKqxJZkh_h4-JfpTb_yQ/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Shepherdpics?a=xk9WNTfC8pw:go0UET28Gco:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Shepherdpics?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Shepherdpics/~4/xk9WNTfC8pw" height="1" width="1"/>
					]]></description>
					<link>http://feedproxy.google.com/~r/Shepherdpics/~3/xk9WNTfC8pw/can-i-call-you-cab-sir.html</link>
					<pubDate>Tue, 20 Dec 2011 18:00:00 +0000 GMT</pubDate>
						<media:thumbnail url="http://1.bp.blogspot.com/-rNtw1NyZwz0/Tu-G3209KfI/AAAAAAAAAb0/Fsfy0TcNvrQ/s72-c/HeathrowCars.png"/>
						<media:content url="http://1.bp.blogspot.com/-rNtw1NyZwz0/Tu-G3209KfI/AAAAAAAAAb0/Fsfy0TcNvrQ/s72-c/HeathrowCars.png" type="image/jpeg" />
</item>
			 <item>
					<title>Gary Horner is photographer of the month for December</title>
					<description><![CDATA[
					<div style="text-align: center;"><div style="text-align: left;">Our photographer for December is Gary Horner and his <a href="http://eastcoastimages.co.uk/">EastCoastImages.co.uk</a> website. Gary's work overs a wide range of subjects and shows a great eye for the landscape of his native East Anglia and is well worth a visit.</div><br /><div class="separator" style="clear: both; text-align: center;"><a href="http://www.eastcoastimages.co.uk/"><br /><img border="0" height="213" src="http://www2.clikpic.com/Gaz_H/images/bl29.jpg" width="320" /></a></div><div class="separator" style="clear: both; text-align: center;"><br /></div><br />&nbsp; Herringfleet Mill</div><div style="text-align: center;"><span style="font-size: x-small;"><i>by Gary Horner</i></span></div><div style="text-align: center;"><br /></div><hr width="75%" /><br /><a href="http://blog.shepherdpics.com/search/label/Photographer%20of%20the%20Month">Previous&nbsp; Photographers of the Month</a><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7305559788664993980-1487125684294383634?l=blog.shepherdpics.com' alt='' /></div>
<p><a href="http://feedads.g.doubleclick.net/~a/btOUdmA6arJbncrPSvcuCNmH2zU/0/da"><img src="http://feedads.g.doubleclick.net/~a/btOUdmA6arJbncrPSvcuCNmH2zU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/btOUdmA6arJbncrPSvcuCNmH2zU/1/da"><img src="http://feedads.g.doubleclick.net/~a/btOUdmA6arJbncrPSvcuCNmH2zU/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Shepherdpics?a=wCa740i4np4:aYCnDwT9ytY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Shepherdpics?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Shepherdpics/~4/wCa740i4np4" height="1" width="1"/>
					]]></description>
					<link>http://feedproxy.google.com/~r/Shepherdpics/~3/wCa740i4np4/gary-horner-is-photographer-of-month.html</link>
					<pubDate>Thu, 01 Dec 2011 09:49:00 +0000 GMT</pubDate></item>
			 <item>
					<title>Black and White Photographer of the Year 2011 Comp</title>
					<description><![CDATA[
					Quite a few people who knew that I had 3 pictures that were shortlisted for "Black and White Photographer of the Year" have asked how I got on in the competition.<br /><br />Well I didn't win,&nbsp; <a href="http://www.bpoty.com/#/winners/4549061982">you can see the winners here</a>.&nbsp; Congratulations to Binh Trinh and the other winners.<br /><br />I was pleased however to get one shot recognized in the "Shots we liked but didn't quite make it" section featured in this months magazine and was chosen to go on the welcome page of the magazine.<br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="http://1.bp.blogspot.com/-L_-w9RCGQsE/TtEQ8dGAHhI/AAAAAAAAAXw/x-TfBQMrM5k/s1600/SmudgeCover.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="336" src="http://1.bp.blogspot.com/-L_-w9RCGQsE/TtEQ8dGAHhI/AAAAAAAAAXw/x-TfBQMrM5k/s400/SmudgeCover.jpg" width="400" /></a></div><br />I'm taking that as pretty much a second place in one of the categories - which is nice. I am also really proud that the shot in question is of my beloved Smudge,&nbsp; a dog with more personality than a little dog should have, who unfortunately passed away exactly a year ago.<br /><br />Below are the three shots that were shortlisted:<br /><br /><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><img border="0" height="265" src="http://2.bp.blogspot.com/-uOQ8i28IFp8/TtES6txGAVI/AAAAAAAAAX4/IAVf9Ev9jcg/s400/Gormley+Towers.jpg" style="margin-left: auto; margin-right: auto;" width="400" /></td></tr><tr><td class="tr-caption" style="text-align: center;">Gormley Towers</td></tr></tbody></table><div class="separator" style="clear: both; text-align: center;"><br /></div><div class="separator" style="clear: both; text-align: center;"><br /></div><div class="separator" style="clear: both; text-align: center;"></div><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://2.bp.blogspot.com/-9vHYnsYkoq4/TtES-ZctAiI/AAAAAAAAAYI/sEjpGUAfHZ4/s1600/Smudge-2.jpg" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="282" src="http://2.bp.blogspot.com/-9vHYnsYkoq4/TtES-ZctAiI/AAAAAAAAAYI/sEjpGUAfHZ4/s400/Smudge-2.jpg" width="400" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Smudge</td></tr></tbody></table><br /><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://2.bp.blogspot.com/-1-goHaEtGt8/TtES87h-vmI/AAAAAAAAAYA/ueImR-mGYKA/s1600/Lunchtime.jpg" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="270" src="http://2.bp.blogspot.com/-1-goHaEtGt8/TtES87h-vmI/AAAAAAAAAYA/ueImR-mGYKA/s400/Lunchtime.jpg" width="400" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Lunchtime</td></tr></tbody></table><br /><br /><br /><br /><br /><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7305559788664993980-1512527227037159027?l=blog.shepherdpics.com' alt='' /></div>
<p><a href="http://feedads.g.doubleclick.net/~a/bgltxg4Nc41Wojkd_7OhjFE4Vvg/0/da"><img src="http://feedads.g.doubleclick.net/~a/bgltxg4Nc41Wojkd_7OhjFE4Vvg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/bgltxg4Nc41Wojkd_7OhjFE4Vvg/1/da"><img src="http://feedads.g.doubleclick.net/~a/bgltxg4Nc41Wojkd_7OhjFE4Vvg/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Shepherdpics?a=hEOB6tgb5sg:inqvh0EqG_E:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Shepherdpics?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Shepherdpics/~4/hEOB6tgb5sg" height="1" width="1"/>
					]]></description>
					<link>http://feedproxy.google.com/~r/Shepherdpics/~3/hEOB6tgb5sg/black-and-white-photographer-of-year.html</link>
					<pubDate>Sun, 27 Nov 2011 08:00:00 +0000 GMT</pubDate>
						<media:thumbnail url="http://1.bp.blogspot.com/-L_-w9RCGQsE/TtEQ8dGAHhI/AAAAAAAAAXw/x-TfBQMrM5k/s72-c/SmudgeCover.jpg"/>
						<media:content url="http://1.bp.blogspot.com/-L_-w9RCGQsE/TtEQ8dGAHhI/AAAAAAAAAXw/x-TfBQMrM5k/s72-c/SmudgeCover.jpg" type="image/jpeg" />
</item>
			 <item>
					<title>A hard case for the LEE Big Stopper</title>
					<description><![CDATA[
					The <a href="http://www.leefilters.com/camera/products/finder/ref:C4B82843315DFF/">LEE Big Stopper</a> is fast becoming one of the most popular filters in photography today.  The ability to setup the shot with other filters then slide in the 10 stopper at the last moment makes it much easier to use than the screw in filters.<br /><br />In fact the only real problem I have found with the Big Stopper is the absence of a hard case for it.  The soft pouch they come in is great for stopping it getting scratched but if you are as clumsy as me they offer little protection against snapping the thing.  The filter is actually as brittle as cinder toffee, so if you are not careful your £100 filter will end up looking like mine:<br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="http://4.bp.blogspot.com/-pJ7S4kT_vHA/Tr2Qmp5mofI/AAAAAAAAAWM/HLCzlOYStyo/s1600/Broken%2BBig%2BStopper.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="400" src="http://4.bp.blogspot.com/-pJ7S4kT_vHA/Tr2Qmp5mofI/AAAAAAAAAWM/HLCzlOYStyo/s400/Broken%2BBig%2BStopper.jpg" width="309" /></a></div>Luckily when I explained my predicament to the good people at LEE helped me out with a replacement filter really quick.&nbsp; Fantastic customer service from LEE, I'm never buying filters from anyone else.<br /><br />So - how to keep my new filter from the same fate?&nbsp; It was time to investigate a hard case option.&nbsp;&nbsp; LEE don't make a hard case and a search on the web drew a blank too.&nbsp; It was time to make my own.<br /><br />If you are old enough you may remember that before downloads, music used to come on a physical disc called a CD.  I happen to have a fair few of these archaic things laying around the house and they are almost exactly the right size to be a Big Stopper case.<br /><br />Conversion from ancient recording technology to modern filter storage is simple:<br /><br /><ol><li>Take out that old Steps CD and chuck it in the bin</li><li>Pull out the bit the CD was laying in throw it away.</li><li>Tape the LEE exposure table to the inside of the case so you can find it easily </li><li>Cut two pieces of lens cloth to fit the inside of the case and fix them using double sided tape.</li><li>Cut a thin layer of packing foam the to fit the inside of the case.</li><li>Cut a filter sized hole in the foam and fix it into the the case with double sided tape</li><li>And your done.</li></ol><br /><div class="separator" style="clear: both; text-align: center;"><a href="http://4.bp.blogspot.com/-lzsaXt3HoEI/Tr2WIN5bYXI/AAAAAAAAAWc/_Jtf6GgeSJk/s1600/BigStopperCase-1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="231" src="http://4.bp.blogspot.com/-lzsaXt3HoEI/Tr2WIN5bYXI/AAAAAAAAAWc/_Jtf6GgeSJk/s320/BigStopperCase-1.jpg" width="320" /></a></div><br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="http://1.bp.blogspot.com/-601jx7-rb4s/Tr2SnEAHuyI/AAAAAAAAAWU/XN86yci2xNc/s1600/Big+Stopper+Case.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="243" src="http://1.bp.blogspot.com/-601jx7-rb4s/Tr2SnEAHuyI/AAAAAAAAAWU/XN86yci2xNc/s320/Big+Stopper+Case.jpg" width="320" /></a></div><br /><br />Please let me know if you decide to make a similar case &amp; if you find a better way of doing it.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7305559788664993980-5901340925668623050?l=blog.shepherdpics.com' alt='' /></div>
<p><a href="http://feedads.g.doubleclick.net/~a/wqAxGHeDoPW6VuLfNjPa9RLgtZw/0/da"><img src="http://feedads.g.doubleclick.net/~a/wqAxGHeDoPW6VuLfNjPa9RLgtZw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/wqAxGHeDoPW6VuLfNjPa9RLgtZw/1/da"><img src="http://feedads.g.doubleclick.net/~a/wqAxGHeDoPW6VuLfNjPa9RLgtZw/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Shepherdpics?a=g0MDSL3HIFY:byjkrOeBHKU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Shepherdpics?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Shepherdpics/~4/g0MDSL3HIFY" height="1" width="1"/>
					]]></description>
					<link>http://feedproxy.google.com/~r/Shepherdpics/~3/g0MDSL3HIFY/hard-case-for-lee-big-stopper.html</link>
					<pubDate>Fri, 11 Nov 2011 21:40:00 +0000 GMT</pubDate>
						<media:thumbnail url="http://4.bp.blogspot.com/-pJ7S4kT_vHA/Tr2Qmp5mofI/AAAAAAAAAWM/HLCzlOYStyo/s72-c/Broken%2BBig%2BStopper.jpg"/>
						<media:content url="http://4.bp.blogspot.com/-pJ7S4kT_vHA/Tr2Qmp5mofI/AAAAAAAAAWM/HLCzlOYStyo/s72-c/Broken%2BBig%2BStopper.jpg" type="image/jpeg" />
</item>
			 <item>
					<title>Nigel Wilkins is photographer of the month for November</title>
					<description><![CDATA[
					<div style="text-align: center;"><div style="text-align: left;">Our photographer for November is <a href="http://nigelwilkinsphotography.com/index.htm">Nigel Wilkins</a>. <a href="http://nigelwilkinsphotography.com/index.htm">Nigels website</a> has some stunning views of The English Lake District and is worth a visit.</div><br /><div class="separator" style="clear: both; text-align: center;"><a href="http://nigelwilkinsphotography.com/images/Striding_Edge_Helvellyn_MG_8502-207987w.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="263" src="http://nigelwilkinsphotography.com/images/Striding_Edge_Helvellyn_MG_8502-207987w.jpg" width="400" /></a></div><br />&nbsp; Striding Edge</div><div style="text-align: center;"><span style="font-size: x-small;"><i>by Nigel Wilkins</i></span></div><div style="text-align: center;"><br /></div><hr width="75%" /><br /><a href="http://blog.shepherdpics.com/search/label/Photographer%20of%20the%20Month">Previous&nbsp; Photographers of the Month</a><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7305559788664993980-8543284837573258471?l=blog.shepherdpics.com' alt='' /></div>
<p><a href="http://feedads.g.doubleclick.net/~a/XHU72LHUslmZ81p32XRBkrJ3Aek/0/da"><img src="http://feedads.g.doubleclick.net/~a/XHU72LHUslmZ81p32XRBkrJ3Aek/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/XHU72LHUslmZ81p32XRBkrJ3Aek/1/da"><img src="http://feedads.g.doubleclick.net/~a/XHU72LHUslmZ81p32XRBkrJ3Aek/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Shepherdpics?a=GM1p_XSl22U:3gBFsoMk46o:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Shepherdpics?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Shepherdpics/~4/GM1p_XSl22U" height="1" width="1"/>
					]]></description>
					<link>http://feedproxy.google.com/~r/Shepherdpics/~3/GM1p_XSl22U/nigel-wilkins-is-photographer-of-month.html</link>
					<pubDate>Tue, 01 Nov 2011 08:00:00 +0000 GMT</pubDate></item>
			 <item>
					<title>Where are we going</title>
					<description><![CDATA[
					The other week I was chatting to a good friend of mine and he started ranting about the photography he sees on many of the photography websites. How many of the popular shots seem to owe little relationship to the real world and seem to suffer from cartonification.<br /><br />I suggested he put his thoughts down and make a blog out of his thoughts.  Below is what my friend, who wishes to remain anonymous, came up with.&nbsp; I hope you enjoy reading his thoughts on the state of popular photography today.<br /><br /><hr width="75%" /><br />The Basics of Photography <br /><br /><br />A few years ago I enrolled on a one year course to study photography.  One of the first lessons I learnt was that 'photography' meant writing or painting with light, the ability to capture a moment in time with the prevailing light was the essence of photography. Little did I realise then what could be achieved without such illumination.<br /><br />I feel a photograph should represent what the photographer saw at the time of capture, using the skills he has learnt and fashioned to manipulate the camera by adjusting exposure or shutter speed and balancing light by using filters. Gaining a fundamental knowledge of these tools of the trade, with equal importance to how light interacts with the equipment, will lead to better and more honest results. In a recent internet forum thread, about this very same subject, one photographer alluded to better photography results would be achieved with "patience, planning and understanding in the field in the right conditions" I fully endorse these comments. <br /><br />I had been trawling my way through various popular photography sites recently with a fairly glum outlook to the future of my beloved hobby. It seems an image has to go through a Photoshop metamorphous before it is appreciated and applauded. One such image so infuriated me it prompted this blog.<br /><br />The image in question is from a popular photographers spot, shot many times, in fact I had been there recently, what grated me was not so much the photoshop manipulation, (well actually it did) but more the comments and accolades it received.<br /><ul><li>"Lovely colours"</li><li>"wonderful colours captured"</li><li>" love the winter colours"</li></ul>couldn't anyone see what I was seeing? The shot was straight out of a Pixar movie and nothing to do with real colours. It was a cartoon still, a make-believe impression from the time it was taken. No one mentioned manipulation, not one mention of<br /><ul><li>"nice Photoshop work"</li><li>"good use of the saturation sliders"</li><li>"love the cartoon effect"</li></ul><br />It certainly wasn't in the photographers' description.   It was as if the image had the emperor's new clothes on and what pains me is this seems to be becoming the norm. With more and more images sent through the Photoshop grinder coming out appearing total unreal from the original "painting with light" concept than ever before.<br /><br /><br />A photographer I have huge admiration for wrote<br /><br /><blockquote>I want to recreate the scene that you would have witnessed with your own eyes had you been standing next to me at the moment I fired the camera's shutter.</blockquote><br />This is a poignant statement to those in the modern era of photography that the basic concepts of photography should be learnt and not everything should be resolved after the occasion via the PC.<br /><br /><hr width="75%" />So, what do you think?  Have we forgotten the essentials of taking pictures?  Has manipulation taken over from craftsmanship or is it all part of a broad church called photography and everything is valid?<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7305559788664993980-2953582698074824476?l=blog.shepherdpics.com' alt='' /></div>
<p><a href="http://feedads.g.doubleclick.net/~a/WvwpAWOgJVmfRME8GGc2bEmiEnA/0/da"><img src="http://feedads.g.doubleclick.net/~a/WvwpAWOgJVmfRME8GGc2bEmiEnA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/WvwpAWOgJVmfRME8GGc2bEmiEnA/1/da"><img src="http://feedads.g.doubleclick.net/~a/WvwpAWOgJVmfRME8GGc2bEmiEnA/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Shepherdpics?a=A8eouZ62FRA:6IRfY-EW2T0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Shepherdpics?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Shepherdpics/~4/A8eouZ62FRA" height="1" width="1"/>
					]]></description>
					<link>http://feedproxy.google.com/~r/Shepherdpics/~3/A8eouZ62FRA/where-are-we-going.html</link>
					<pubDate>Sat, 22 Oct 2011 18:31:00 +0000 GMT</pubDate></item></channel>
</rss>
