<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Eric Heikkinen Photography</title>
	
	<link>http://ericheikkinen.com</link>
	<description>San Francisco Freelance Photographer</description>
	<lastBuildDate>Sun, 26 Feb 2012 08:30:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/EricHeikkinen" /><feedburner:info uri="ericheikkinen" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>EGallery – Automatic PHP Image Galleries</title>
		<link>http://feedproxy.google.com/~r/EricHeikkinen/~3/QySmtQQMWig/</link>
		<comments>http://ericheikkinen.com/egallery-automatic-php-image-galleries/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 05:40:50 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[TIps & Tutorials]]></category>
		<category><![CDATA[Downloads]]></category>

		<guid isPermaLink="false">http://ericheikkinen.com/?p=1711</guid>
		<description><![CDATA[When it comes to delivering images to clients or models it has always been a hassle, requiring me to either use another web service or asking clients to right click and save images from a list of files (how boring!). I was tired of explaining the difficult download process and wanted to come up with an easier method that is both simple for me and for clients downloading the images. That’s why I spent some time writing my own PHP script that will generate an image gallery automatically from any directory filled with images.]]></description>
			<content:encoded><![CDATA[<p>When it comes to delivering images to clients or models it has always been a hassle, requiring me to either use another web service or asking clients to right click and save images from a list of files (how boring!). I was tired of explaining the difficult download process and wanted to come up with an easier method that is both simple for me and for clients downloading the images. That&#8217;s why I spent some time writing my own PHP script that will generate an image gallery automatically from any directory filled with images.</p>
<div style="text-align: center;"><a href="http://ericheikkinen.com/demo/egallery/"><img class="colorbox-1711"  title="EGallery" src="http://ericheikkinen.com/uploads/egallery.jpg" alt="egallery EGallery   Automatic PHP Image Galleries"  /></a></div>
<h3>Presenting EGallery</h3>
<p><a href="http://ericheikkinen.com/demo/egallery/">EGallery</a> (&#8220;E&#8221; for Eric) is a free PHP script that generates an image gallery automatically. Once you have a directory of image files, just upload the EGallery files to that same directory and &#8220;POW!&#8221; you have yourself a full-fledged image gallery. Thumbnails are automatically processed and cached and each one links to an original resolution copy of your images, which users are prompted to save to their computer. Want to see it in action? <a href="http://ericheikkinen.com/demo/egallery/">Follow this link for a demo</a>.</p>
<h3>Installation</h3>
<p>Follow these few basic steps to install EGallery on your PHP-enabled website:</p>
<ol>
<li>Upload images to a new directory on your web server. For example: YOUR-WEBSITE.COM/sample/</li>
<li>Upload the /egallery/ directory to the same subdirectory that you just created on step 1. Example: YOUR-WEBSITE.COM/sample/egallery/</li>
<li>CHMOD the /egallery/cache/ directory as well as the contained index.html file to 777.</li>
<li>Upload the index.php file included with the download package to the directory you created on step 1.</li>
</ol>
<p>Once you have completed the step above, navigate to the image directory from step 1 using your web browser. The first time that you visit this page it may take a little while for the script to generate thumbnail files. After the initial load, those thumbnails will be cached resulting in a faster page load.</p>
<p>You can configure this script by editing the /egallery/setttings.php file. This allows you to alter the &lt;title&gt; tag, thumbnail image size, and error messages.</p>
<h3>Troubleshooting</h3>
<p><strong>Q.</strong> Why don&#8217;t I see thumbnails?<br />
<strong>A.</strong> First, make sure that you have the correct write permissions. Set the CHMOD value to 777 for the cache directory <strong>and</strong> the index.html file within it. Another possible cause may be that the images are so large that they are using up your server&#8217;s memory. You may have to temporarily change your php.ini file settings to increase the memory limit. If you can get it as high as 128MB then you should be good to go. You can also try changing the MEMORY_LIMIT value in the thumb.php file.</p>
<p><strong>Q.</strong> I see the error &#8220;Warning: shell_exec() has been disabled for security reasons in /egallery/functions.php on line 29&#8243;?<br />
<strong>A.</strong> This is probably caused by your server being set to run PHP in Safe Mode. You will need to disable safe mode to run this script. If the error still doesn&#8217;t go away, you should check with your web host to see if their own custom security permissions are preventing the script from running. As a last resort you could try changing lines 29-31 in /egallery/functions.php to the following:</p>
<blockquote><p>//$mimetype = trim(`file -bi $f`);<br />
foreach($imagetypes as $valid_type) {<br />
if(preg_match(&#8220;@^{$valid_type}@&#8221;, &#8220;image/jpg&#8221;)) {</p></blockquote>
<h3>Updates</h3>
<p><strong>Version 1.0</strong> -Initial release.</p>
<p>A future update may include the ability to download all images as a .zip file and additional settings.</p>
<div class="downloadLink">
<p><a title="Download EGallery" href="http://ericheikkinen.com/uploads/egallery.zip">Download EGallery Here</a></p>
<div style="clear: both;"></div>
</div>
<img src="http://feeds.feedburner.com/~r/EricHeikkinen/~4/QySmtQQMWig" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://ericheikkinen.com/egallery-automatic-php-image-galleries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://ericheikkinen.com/egallery-automatic-php-image-galleries/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=egallery-automatic-php-image-galleries</feedburner:origLink></item>
		<item>
		<title>Lightroom Preset – Golden Hour</title>
		<link>http://feedproxy.google.com/~r/EricHeikkinen/~3/ZOP6s1-0tAY/</link>
		<comments>http://ericheikkinen.com/lightroom-preset-golden-hour/#comments</comments>
		<pubDate>Sat, 13 Aug 2011 00:29:39 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Photo Editing]]></category>
		<category><![CDATA[free stuff]]></category>
		<category><![CDATA[lightroom]]></category>

		<guid isPermaLink="false">http://ericheikkinen.com/?p=1162</guid>
		<description><![CDATA[I was looking for a really warm and bright Lightroom to bring out the classic "golden hour" look in some photos taken in normal daylight. Unhappy with any of the presets that I had installed, I created my own that takes the look to the extreme. This preset will in many cases take the brightness up too far, so if things seem overblown experiment with taking down the brightness followed by the exposure if necessary.]]></description>
			<content:encoded><![CDATA[<p>I was looking for a really warm and bright Lightroom to bring out the classic &#8220;golden hour&#8221; look in some photos taken in normal daylight. Unhappy with any of the presets that I had installed, I created my own that takes the look to the extreme. This preset will in many cases take the brightness up too far, so if things seem overblown experiment with taking down the brightness followed by the exposure if necessary. One last note is that I designed this for portrait looks, it probably wouldn&#8217;t work well for landscapes other than urban environments.</p>
<div style="text-align: center;"><img src="http://ericheikkinen.com/uploads/2011/08/lightroom-golden-hour-portrait.jpg" alt="lightroom golden hour portrait Lightroom Preset   Golden Hour" title="lightroom-golden-hour-portrait" width="473" height="342" class="alignnone size-full wp-image-1355 colorbox-1162" /></div>
<div class="downloadLink"><img class="colorbox-1162"  src="http://ericheikkinen.com/uploads/2011/08/lightroom_32.png" alt="lightroom 32 Lightroom Preset   Golden Hour" width="32px" height="32px" title="Lightroom Preset   Golden Hour" />
<p><a title="Download Preset" href="http://ericheikkinen.com/uploads/2011/08/Erics-Golden-Hour-Portrait.zip">Download the Golden Hour Preset</a></p>
<div style="clear: both;"></div>
</div>
<img src="http://feeds.feedburner.com/~r/EricHeikkinen/~4/ZOP6s1-0tAY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://ericheikkinen.com/lightroom-preset-golden-hour/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://ericheikkinen.com/lightroom-preset-golden-hour/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=lightroom-preset-golden-hour</feedburner:origLink></item>
		<item>
		<title>AlienBees Honeycomb Grids</title>
		<link>http://feedproxy.google.com/~r/EricHeikkinen/~3/p1TDDv1riLw/</link>
		<comments>http://ericheikkinen.com/alienbees-honeycomb-grids/#comments</comments>
		<pubDate>Fri, 06 May 2011 00:42:45 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Reviews & Buying Guides]]></category>

		<guid isPermaLink="false">http://ericheikkinen.com/?p=1030</guid>
		<description><![CDATA[I received a set of AlienBees Honeycomb Grid filters a couple weeks ago along with a 7-inch reflector that they snap into. I purchased a kit consisting of 10, 20, 30, and 40 degree sizes and set them up for a quick test shoot to see how they compared. Below are the resulting images that demonstrate the effect of honeycomb grids. I'm sharing these pictures for the purpose of showing other photographers how honeycomb grids effect the light from a distance of approximately 10 feet.

<img src="http://ericheikkinen.com/file/grids.jpg" alt="Grid Comparison" />]]></description>
			<content:encoded><![CDATA[<p>I received a set of <a href="http://www.alienbees.com/grids.html" rel="nofollow">AlienBees Honeycomb Grid</a> filters a couple weeks ago along with a <a href="http://www.alienbees.com/7abr.html" rel="nofollow">7-inch reflector</a> that they snap into. I purchased a kit consisting of 10, 20, 30, and 40 degree sizes and set them up for a quick test shoot to see how they compared. Below are the resulting images that demonstrate the effect of honeycomb grids. I&#8217;m sharing these pictures for the purpose of showing other photographers how honeycomb grids effect the light from a distance of approximately 10 feet. Unfortunately I did not snap a photo sans honeycomb grid, so I will need to update this post later on with more examples.</p>
<p><img src="http://ericheikkinen.com/uploads/2011/05/grids.jpg" alt="grids AlienBees Honeycomb Grids" title="grids" width="575" height="376" class="alignnone size-full wp-image-1350 colorbox-1030" /></p>
<img src="http://feeds.feedburner.com/~r/EricHeikkinen/~4/p1TDDv1riLw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://ericheikkinen.com/alienbees-honeycomb-grids/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://ericheikkinen.com/alienbees-honeycomb-grids/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=alienbees-honeycomb-grids</feedburner:origLink></item>
		<item>
		<title>Lightroom Black and White Preset Download</title>
		<link>http://feedproxy.google.com/~r/EricHeikkinen/~3/uMj1yPAN8pY/</link>
		<comments>http://ericheikkinen.com/lightroom-black-and-white-preset/#comments</comments>
		<pubDate>Tue, 03 May 2011 22:08:11 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Photo Editing]]></category>
		<category><![CDATA[free stuff]]></category>
		<category><![CDATA[lightroom]]></category>

		<guid isPermaLink="false">http://ericheikkinen.com/?p=1005</guid>
		<description><![CDATA[<p>Recently I did a series of artistic black and white photographs and was in need of a Lightroom preset that would work well on a black background. I wasn't able to find any existing presets in my pretty large collection, so I created my own.</p>]]></description>
			<content:encoded><![CDATA[<p>Recently I did a series of artistic black and white photographs and was in need of a Lightroom preset that would work well on a black background. I wasn&#8217;t able to find any existing presets in my pretty large collection, so I created my own.</p>
<p><img class="colorbox-1005"  style="margin-bottom: 10px;" title="Lightroom Black and White Preset Example" src="http://ericheikkinen.com/file/eric-bw-preset.jpg" alt="eric bw preset Lightroom Black and White Preset Download"  /></p>
<p>When shooting these images it was difficult to tell if the lighting was correct when reviewing the photos in-camera. That&#8217;s when I decided to create a Lightroom preset to apply to all of the photos during a tethered capture. Without this ability I would have felt less confident in my shots as I was taking them, and wouldn&#8217;t have been able to see what lighting needed improved until it was too late.</p>
<p>Once the shoot was complete I tweaked my black and white preset until I was happy with a version that worked well across nearly all of the images taken during this session. The resulting preset is great for black backdrops, but it also works really well for more generic black and white portrait purposes. One other thing that I should mention is that it&#8217;s not a 100% true black and white preset because the images will have a slightly warm tone to them, which is controlled by the Split Toning feature within Lightroom.</p>
<p><img class="colorbox-1005"  style="margin-bottom: 10px;" title="Lightroom Black and White Preset Example 2" src="http://ericheikkinen.com/file/eric-bw-preset-2.jpg" alt="eric bw preset 2 Lightroom Black and White Preset Download"  /></p>
<div style="padding: 9px 9px 2px 9px; border: 2px solid #eee; background: #fff; margin: 12px 15px 8px 15px;"><img class="colorbox-1005"  style="float: left; display: inline;" src="http://ericheikkinen.com/file/lightroom_32.png" alt="lightroom 32 Lightroom Black and White Preset Download" width="32px" height="32px" title="Lightroom Black and White Preset Download" /></p>
<p style="float: left; font-size: 18px; font-weight: bold; padding: 5px 0 0 8px;"><a title="Download Preset" href="http://ericheikkinen.com/file/Eric-BW.zip">Download the Black and White Preset</a></p>
<div style="clear: both;"></div>
</div>
<img src="http://feeds.feedburner.com/~r/EricHeikkinen/~4/uMj1yPAN8pY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://ericheikkinen.com/lightroom-black-and-white-preset/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://ericheikkinen.com/lightroom-black-and-white-preset/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=lightroom-black-and-white-preset</feedburner:origLink></item>
		<item>
		<title>What Photographers Look For in Models</title>
		<link>http://feedproxy.google.com/~r/EricHeikkinen/~3/UkQpneVMdKg/</link>
		<comments>http://ericheikkinen.com/what-photographers-look-for-in-models/#comments</comments>
		<pubDate>Wed, 20 Apr 2011 09:49:15 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[TIps & Tutorials]]></category>

		<guid isPermaLink="false">http://ericheikkinen.com/?p=959</guid>
		<description><![CDATA[Today I spent a significant amount of time browsing ModelMayhem.com in search of a model in the Orlando area for a future shoot. It's been just over a year since I joined Model Mayhem and because the site features a lot of amateur models I have had to develop some techniques to figure out which girls are the best ones to work with. This article describes those techniques and should be helpful for photographers seeking models, and for models looking to improve their chances of getting booked by a photographer online.]]></description>
			<content:encoded><![CDATA[<p>Today I spent a significant amount of time browsing ModelMayhem.com in search of a model in the Orlando area for a future shoot. It&#8217;s been just over a year since I joined Model Mayhem and because the site features a lot of amateur models I have had to develop some techniques to figure out which girls are the best ones to work with. This article describes those techniques and should be helpful for photographers seeking models, and for models looking to improve their chances of getting booked by a photographer online.</p>
<h2>The Profile Picture</h2>
<p>The first thing is perhaps the most important piece of self-advertising that you have online: the profile picture. A model&#8217;s profile photo should convey your natural beauty, your body shape, and your ability to make a shot interesting. It&#8217;s difficult for a model to convey all of these things in one image that&#8217;s under 100 pixels wide, but it can be done.</p>
<p>When I use the term &#8220;natural beauty&#8221; I am referencing a model&#8217;s facial features, and how well they photograph. Just because a girl is beautiful in person does not guarantee that they will be beautiful on film. Even if you don&#8217;t photograph naturally as well as you would expect, there is room to improve through practice. Models who frequently practice poses and facial expressions in the mirror will produce consistently better photos because they become familiar with their looks. Practice makes perfect, even in the modeling world.</p>
<div style="text-align: center;"><img class="colorbox-959"  title="Heather demonstrating height" src="http://ericheikkinen.com/file/IMG_6041.jpg" alt="IMG 6041 What Photographers Look For in Models"  /></p>
<p style="font-size: 10px;">This photo uses all 3 of my below recommendations.<br />
Tall heels, a wide angle lens, and a low angle make this model appear taller than she really is.</p>
</div>
<p>The <a href="http://en.wikipedia.org/wiki/Human_height#Average_height_around_the_world" rel="nofollow">average height for a female in the United States</a> is currently around 5 feet 5 inches tall. Runway models are usually 5&#8217;9&#8243; or above, but fortunately you don&#8217;t have to be that tall to look good in photographs. One trick that models use is to photograph themselves from unusual angles to make themselves look taller. Photographing with a wide lens, or from a low angle will sometimes give the illusion that you are much taller than what you actually are. My last tip concerning height, and what will undoubtedly be every model&#8217;s favorite: get a nice pair of pumps! Shoes with tall heels will elongate your legs and also help tone your calves in photos.</p>
<div style="text-align: center;"><img class="colorbox-959"  title="Profile Picture Pose Examples" src="http://ericheikkinen.com/file/profile-pose-examples.jpg" alt="profile pose examples What Photographers Look For in Models"  /></p>
<p style="font-size: 10px;">Here is an example of good and a bad poses for profile images.</p>
</div>
<p>Above I have two example pictures to demonstrate good and bad poses for profile pictures. The example on the left is good for a number of reasons. First, the model is making eye contact with the camera. While this isn&#8217;t one of the most important features that makes this a good photo, eye contact will draw the viewer in and create a more memorable photograph. Second, the model is wearing a form fitting dress that allows the photographer to see the basic shape of her body. This is especially difficult to do while in a sitting pose, so bravo to this model. Next, the model&#8217;s body and face are both making a connection with the camera, drawing the viewer in. Finally, the composition of the photograph makes it easy for the viewer to see her facial features.</p>
<p>Onto the second image, designated as the &#8220;Bad&#8221; photo. While this image on it&#8217;s own is a great shot, it would not make a great main profile image. The main reason for this is because the dress and pose completely hide the figure of the model. I am not going to advocate that all models use bikini shots as their profile picture, but you should <strong>use form fitting clothing</strong> so that the photographer can have a good idea of your body type. Bulky clothing like gowns and flowing dresses make it difficult for a photographer to tell if your body shape is right for the position they are trying to fill. Other negative aspects of this image is that it doesn&#8217;t fill the frame enough with the model&#8217;s face to get a good idea of her features. Lastly, the model is not looking into camera so you don&#8217;t feel the same personal connection that you get with the first image.</p>
<h2>Documentation</h2>
<p>A model&#8217;s online portfolio isn&#8217;t entirely photographs. Take a few minutes to polish up your online profile with details about yourself to win over photographers. Believe it or not, a little personality will go a long way in getting you a booking.</p>
<p>Models should document who they have worked with (photographers, agencies, brands, companies), if they have any skills (dancing, juggling, acting, etc.), or special training/education related to the industry. If I am looking for a model for a paid gig I am far more likely to hire a model who has a background related to that gig. For example if I am shooting a commercial for a tennis racket, I would rather hire a model who knows how to handle one than someone who has no experience playing tennis.</p>
<p><strong>If you have any piercings or tattoos, document them in your portfolio!</strong> Model Mayhem doesn&#8217;t have a dedicated input field for this type of information (unlike OneModelPlace.com), but it&#8217;s important that photographers know about any small details like piercings, tattoos, scars, etc. Sometimes disclosing this information on your profile will benefit you. For example, I am currently trying to organize a shoot with models who have tattoos, and it would be a lot easier for me to read about the tattoos than trying to find one in one of your portfolio pictures. In the age of Photoshop, it&#8217;s not difficult for photographers to remove a scar, piercing, or tattoo during post-production so don&#8217;t be afraid to disclose that information. When reporting your identifying marks make sure that you leave a description of where exactly they are located on your body.</p>
<p>An added bonus to adding all of this information to your portfolio is that it gets indexed by Google. Search engine traffic may end up leading to a photographer who is looking for a &#8220;juggling model with tattoos&#8221;.</p>
<h2>Posing</h2>
<p><strong>Don&#8217;t strike the same pose or facial expression in every shot.</strong> There are a number of profiles on Model Mayhem that contain several images, and in every one of the <a href="http://parisfacial.ytmnd.com/" rel="nofollow" target="_blank">model uses the same pose, angle, and smile</a>. It&#8217;s fine if you have a signature look, but there is no reason why every one of your portfolio shots should be identical. Show some variation in your work so that photographers can see how versatile you can be.</p>
<p>Pacing is very important when posing for a photographer. I prefer to work with models who allow me to capture about 2 or 3 shots of each position before they make small, subtle adjustments. Some girls that I&#8217;ve worked with either move between poses much too fast, or even worse stand completely still. When working with a photographer for the first time you may even ask them how they want the poses paced.</p>
<p>It is also important that a model understands lighting enough to know that they can&#8217;t move around so much that they lose the light. Usually photographers give models about a 2&#215;2 foot size area for them to move around in for close up shots. That gives them just a little room to lean side to side or forward and backward. Anything outside of that box may cause the light to be too bright or dim. It&#8217;s okay for a model to ask a photographer how much room they have to play with, so feel free to ask.</p>
<p>If you are interested in fashion modeling, subscribe to Vogue, Harper&#8217;s Bazaar, or Elle. If you want to do beauty modeling, pick up an issue of Cosmopolitan, Marie Claire, or Redbook. You will stand out from other models when you actively study and learn from professional models in magazines. The knowledge gained from this type of research may also prove useful when a photographer asks you to strike a pose like Adriana Lima.</p>
<h2>Be Personable</h2>
<p>Not only do you need to look good on camera, but models should be personable and fun to be around off camera. These people skills are essential not only when working with photographers, but also when meeting designers, agents, and other industry members. A model with a warm and inviting attitude will book more repeat shoots and find jobs through personal connections made at jobs and parties.</p>
<img src="http://feeds.feedburner.com/~r/EricHeikkinen/~4/UkQpneVMdKg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://ericheikkinen.com/what-photographers-look-for-in-models/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://ericheikkinen.com/what-photographers-look-for-in-models/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=what-photographers-look-for-in-models</feedburner:origLink></item>
		<item>
		<title>500px.com Review and Promo Code</title>
		<link>http://feedproxy.google.com/~r/EricHeikkinen/~3/Lsu-vqgxB-o/</link>
		<comments>http://ericheikkinen.com/500px-com-review/#comments</comments>
		<pubDate>Tue, 12 Apr 2011 07:02:51 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Reviews & Buying Guides]]></category>

		<guid isPermaLink="false">http://ericheikkinen.com/?p=890</guid>
		<description><![CDATA[<p>500px.com is best described as both a place where a photographer can host their portfolio and as a place where photographers can browse and comment on other artist's photographs. They offer a combination of features that you may have seen across other sites like Flickr, Vi.sualize.us, or 1x.com. The difference between those other sites and 500px.com is that 500px has nearly mastered the essential features that I am looking for as a photographer wanting to share my work and explore the work of other photographers.</p>

<p>Their service opened to the general public in 2009 after several years of conceptualization. Since that time they have gained nearly 50,000 members and currently receive around 1.4 million visits each month. They have built a community that is filled with talented artists, which in return generates a large amount of traffic. Most of that traffic is from fellow photographers and those who are interested in viewing beautiful work. A small fraction of the viewers may be potential future clients, which is one of the reasons 500px.com receives a recommendation at the end of this review.</p>]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 200px;">
<div style="display: block; float: none; margin: 0px 0 20px 20px; padding: 10px; font-size: 1.2em; text-align:center;">
<a style="color:#fff;background:#0095cd;border:#0095cd;border-radius:5px;display:inline-block;font-size:14px;font-weight:bold;margin:0px 0;padding:5px 10px;text-shadow: #333 0.1em 0.1em 0.1em" href="http://500px.com/upgrade?promo_code=friends" rel="nofollow">Use the promo code &#8220;FRIENDS&#8221; to receive $10 OFF your first year.</a></div>
<div style="display: block; margin: 0 0 20px 20px; padding: 10px; background: #eee; border: 2px solid #bbb;">
<p style="font-weight: bold; font-size: 16px; margin: 0 0 10px 0;">Article Overview:</p>
<ul>
<li><a href="#profile">User Profiles</a></li>
<li><a href="#explore">Explore Images</a></li>
<li><a href="#portfolio">Portfolio Page</a></li>
<li><a href="#contact">Contact Page</a></li>
<li><a href="#sell">Sell Prints Online</a></li>
<li><a href="#premium">Premium Features</a></li>
<li><a href="#final">Final Notes</a></li>
</ul>
</div>
</div>
<p><a href="http://500px.com" rel="nofollow">500px.com </a>is best described as both a place where a photographer can host their portfolio and as a place where photographers can browse and comment on other artist&#8217;s photographs. They offer a combination of features that you may have seen across other sites like Flickr, Vi.sualize.us, or 1x.com. The difference between those other sites and 500px.com is that 500px has nearly mastered the essential features that I am looking for as a photographer wanting to share my work and explore the work of other photographers.</p>
<p>Their service opened to the general public in 2009 after several years of conceptualization. Since that time they have gained nearly 50,000 members and currently receive around 1.4 million visits each month. They have built a community that is filled with talented artists, which in return generates a large amount of traffic. Most of that traffic is from fellow photographers and those who are interested in viewing beautiful work. A small fraction of the viewers may be potential future clients, which is one of the reasons 500px.com receives a recommendation at the end of this review.</p>
<h2><a name="profile" href="http://500px.com/ocala" rel="nofollow"></a>User Profiles</h2>
<div style="text-align: center;"><a href="http://500px.com/ocala/" rel="nofollow"><img class="colorbox-890"  style="margin-bottom: 8px;" title="500px Profile Page" src="http://ericheikkinen.com/file/500px-profile.jpg" alt="500px profile 500px.com Review and Promo Code"  /></a></div>
<p>What 500px.com does extremely well is social networking. Specifically they have created a social networking platform directed towards professional level photographers. I believe that 500px.com greatly exceeds the social networking aspects provided by competitors like <a href="http://vi.sualize.us/dslr/" rel="nofollow">Vi.sualize.us</a> or <a href="http://pligg.deviantart.com/" rel="nofollow">DeviantArt.com</a>. These 2 competitors target a much larger audience (artists in general), which is perhaps why 500px has a lead in the photographer market. The vast majority of work on display across 500px.com is high quality, similar to photos you would see in magazines or art galleries. Because they are targeting a professional level audience they are able to stand out from competitors like Flickr whom appeal to a wide range of styles and skills.</p>
<p>500px.com has a feature that enables members to mark other users as friends by &#8220;following them&#8221;. When you follow another member you will see all of your friend&#8217;s most recent contributions displayed on your personalized homepage. This lets you keep up to date with their latest work without much effort.</p>
<div style="text-align: center;"><a href="http://500px.com/ocala/activity" rel="nofollow"><img class="colorbox-890"  style="margin-bottom: 8px;" title="500px Activity Page" src="http://ericheikkinen.com/file/500px-activity.jpg" alt="500px activity 500px.com Review and Promo Code"  /></a></div>
<p>Activity feeds allow you to view the latest actions related to your profile. If another user comments on or favorites one of your photos, that action will show up in the activity feed. Whenever you start following another photographer, or another photographer follows you, that will also show in your feed.</p>
<h2><a name="explore"></a>Explore Images</h2>
<p>500px features work from thousands of photographers, and they make it easy to find some of the best work through voting algorithm and editors choice categories. Editors choice images are hand selected by 500px.com staff, while the other categories are controlled by the collective rating of &#8220;Likes&#8221; and &#8220;Dislikes&#8221; submitted by members.</p>
<p>The popular category showcases the highest rated works. It uses a voting algorithm (<a href="http://500px.com/help#algorithm" rel="nofollow">explained here</a>) where the highest score possible is 100. I don&#8217;t fully understand the exact methods involved in determining their scoring, but I recognize that members are the ones in control of promoting content through their votes.</p>
<h2><a name="portfolio" href="http://ocala.500px.com/" rel="nofollow"></a>500px.com Portfolio Page</h2>
<div style="text-align: center;"><a href="http://www.500px.com/portfolio/" rel="nofollow"><img class="colorbox-890"  style="margin-bottom: 8px;" title="500px Portfolio Settings Page" src="http://ericheikkinen.com/file/500px-portfolio-settings.png" alt="500px portfolio settings 500px.com Review and Promo Code"  /></a></div>
<p>If you are a photographer looking for a website to host your portfolio, 500px.com offers a very simple and elegant way to do that. Each account is provided with <a href="http://ocala.500px.com">a portfolio page</a> subdomain. For example my username on 500px.com is &#8220;Ocala&#8221;, so my portfolio is found at <a href="http://ocala.500px.com" rel="nofollow">http://ocala.500px.com</a>. If you own an &#8220;Awesome&#8221; account ($50/year) you are able to host this portfolio page on your own domain name. This feature and a few other benefits are included in the final part of this review.</p>
<div style="text-align: center;"><a href="http://500px.com/portfolio/themes" rel="nofollow"><img class="colorbox-890"  style="margin-bottom: 8px;" title="500px Portfolio Themes" src="http://ericheikkinen.com/file/500px-themes.png" alt="500px themes 500px.com Review and Promo Code"  /></a></div>
<p>At the time of this writing there are 7 basic portfolio themes, and 4 additional premium themes reserved for paid subscribers. One of the limitations of their portfolio pages is that you are unable to customize it. You are left with what they provide you and can only make small changes to the content on the contact page.</p>
<p>500px.com is currently developing a feature to create add-on pages for your portfolio site. An example use for this feature would be to add a &#8220;Pricing&#8221; page where you could list your fees for photography services. This will be yet another feature for &#8220;Awesome&#8221; users who pay the yearly subscription fee.</p>
<h2><a name="contact" href="http://ocala.500px.com/contact" rel="nofollow"></a>500px.com Contact Page</h2>
<div style="text-align: center;"><a href="http://ocala.500px.com/contact" rel="nofollow"><img class="colorbox-890"  style="margin-bottom: 8px;" title="500px Contact Page" src="http://ericheikkinen.com/file/500px-contact.jpg" alt="500px contact 500px.com Review and Promo Code"  /></a></div>
<p>For members who want to use their portfolio on 500px.com as a way to attract new business, it&#8217;s essential that you give viewers a way to contact you. 500px.com provides each portfolio with a contact page, which lists your social media contact information (Twitter, LiveJournal, Flickr, ICQ, Skype, Google Talk), your homepage URL, as well as more traditional contact methods like your phone number and email address. To simplify things they even include a contact form that will deliver an email to your inbox, so that visitors don&#8217;t need to leave the page to dispatch an email.</p>
<h2><a name="sell"></a>Sell Prints Online</h2>
<div style="text-align: center;"><img class="colorbox-890"  style="margin-bottom: 8px;" title="500px Buy Prints" src="http://ericheikkinen.com/file/500px-print.jpg" alt="500px print 500px.com Review and Promo Code"  /></div>
<p>500px.com offers a very simple way for you to <a href="http://500px.com/settings/store" rel="nofollow">sell your photographs online</a> through <a href="http://www.fotomoto.com/" rel="nofollow">Fotomoto.com</a>. First you must agree to the store policy and verify that you own the rights to your photographs. Once you have done that, a &#8220;Buy Print&#8221; option will appear beneath your photos which will direct users to a Fotomoto.com popup to complete the sale. Photographers earn an 80% commission (minus the cost of print), while Fotomoto will take a 15% cut and 500px a 5% earnings from each sale.</p>
<p>When you start selling prints you are supposed to be contacted by Fotomoto.com with a welcome email containing signup information for their site so that you can configure your prices. When I signed up to sell photos I never received the email from Fotomoto. At the time of this writing I cannot comment any further concerning the ability to sell prints because of this issue.</p>
<h2><a name="premium"></a>Premium Features (a.k.a. Awesome Users)</h2>
<p>There are a number of features that are reserved for &#8220;Awesome&#8221; users, 500px.com&#8217;s term for premium members who pay a <a href="http://500px.com/upgrade" rel="nofollow">$50/year subscription fee</a>. Throughout this review I have mentioned a few features that are offered to these accounts, but here is a list of all of the benefits offered:</p>
<ul>
<li>Premium portfolio themes</li>
<li>Unlimited photos</li>
<li>Unlimited portfolio collections</li>
<li>Custom domain</li>
<li>Custom logo on portfolio page</li>
<li>Ad free portfolio page</li>
<li>Remove 500px branding from your portfolio</li>
<li>Full-sized image RSS feed</li>
<li>Google Analytics Integration</li>
</ul>
<p>My personal favorite feature is the ability to upload as many photos as you want. If you are an avid photographer who has a large number of photographs that you want to share, then this feature would be essential. Without a premium account you are limited to 20 uploads each week. For most photographers this is perfectly acceptable, as they will only submit their top tier work which may consist of only a couple dozen photographs. If you have under 100 great shots that you wish to share you could get away with a basic account if you are patient enough to wait a week between each batch of 20 uploads.</p>
<p>Many photographers could easily justify the $50 a year fee when they consider using 500px.com as their portfolio host. If you aren&#8217;t interested in building a wholly unique portfolio site then $50 is a pretty good deal for such a sleek interface.</p>
<h2><a name="final"></a>Final Notes</h2>
<p>It seems that 500px.com is doing a lot of things right. Their service is slowly expanding with new features, and their web traffic is quickly growing. There are a few glitches in their system (ex. issues with Facebook Connect), but I am pretty confident that with time they will continue to iron out existing bugs and improve their research and development process to avoid future problems.</p>
<p>I highly recommend that semi-professional to professional level photographers check out the site, and if they like what they see <a href="http://500px.com/signup" rel="nofollow">sign up for a free account</a>. Amateur photographers might be a little more discouraged from user feedback on the site, so I recommend that you limit your portfolio to your absolute best work.</p>
<p>In case you missed it at the top of this article, 500px.com provided me with a promo code so that readers can receive a discount. Enter the promo code &#8220;<a href="http://500px.com/upgrade?promo_code=friends" rel="nofollow">friends</a>&#8221; during checkout to take $10 off your first year when signing up for a premium account.</p>
<img src="http://feeds.feedburner.com/~r/EricHeikkinen/~4/Lsu-vqgxB-o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://ericheikkinen.com/500px-com-review/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://ericheikkinen.com/500px-com-review/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=500px-com-review</feedburner:origLink></item>
		<item>
		<title>How to Age Photos in Photoshop</title>
		<link>http://feedproxy.google.com/~r/EricHeikkinen/~3/2tx8mu8F2S4/</link>
		<comments>http://ericheikkinen.com/how-to-age-photos-in-photoshop/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 11:08:13 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[TIps & Tutorials]]></category>

		<guid isPermaLink="false">http://ericheikkinen.com/?p=862</guid>
		<description><![CDATA[<p>I recently had an opportunity to shoot several girls for some pinup style photos, and I decided to age the photos through some simple Photoshop methods. While experimenting with different effects I think that I came up with an easy method that quickly gives an antique look to your photos with minimal effort.&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>I recently had an opportunity to shoot several girls for some pinup style photos, and I decided to age the photos through some simple Photoshop methods. While experimenting with different effects I think that I came up with an easy method that quickly gives an antique look to your photos with minimal effort.</p>
<h2>Step 1</h2>
<p>Start by opening that photo that you want to age into Photoshop. Below is an image of a pinup girl that we will be using for this tutorial.</p>
<div style="text-align: center; margin-bottom: 10px;"><img class="colorbox-862"  title="Original Image" src="http://ericheikkinen.com/file/aged-photo-original.jpg" alt="aged photo original How to Age Photos in Photoshop"  /></div>
<h2>Step 2</h2>
<p>Next we will add another layer that goes on top of the original image. For this layer I will be importing <a href="http://www.danevins.com/_wizardimages/old_paper.jpg" rel="nofollow" target="_blank">a paper texture</a> that I found by using Google Image search. This texture works well because it&#8217;s high resolution, has a dark yellow tint, and some texture details.</p>
<div style="text-align: center; margin-bottom: 10px;"><img class="colorbox-862"  title="Step 2 Detail" src="http://ericheikkinen.com/file/aged-photo-step-2a.jpg" alt="aged photo step 2a How to Age Photos in Photoshop"  /></div>
<h2>Step 3</h2>
<p>Now you will need to change the layer style from &#8220;Normal&#8221; to &#8220;Multiply&#8221;. In the example image above you will see that I have &#8220;Multiply&#8221; selected. Next you will want to change the opacity for this layer to somewhere between 50-70%. I have it set to 63% in this case.</p>
<div style="text-align: center; margin-bottom: 10px;"><img class="colorbox-862"  title="Step 2" src="http://ericheikkinen.com/file/aged-photo-step-2.jpg" alt="aged photo step 2 How to Age Photos in Photoshop"  /></div>
<p>What you see above are the effects that we have applied so far to the image. Not bad, but I&#8217;m not a fan of the texture and dark splotches on my models face. The solution to this problem is to add another layer that will reduce the amount of aging and texture being applied to the model. Right click on the original image layer and select &#8220;Duplicate Layer&#8221; to make a copy. Then drag that copy to the top of the layer list.</p>
<h2>Step 4</h2>
<div style="text-align: center; margin-bottom: 10px;"><img class="colorbox-862"  title="Step 3" src="http://ericheikkinen.com/file/aged-photo-step-3a.jpg" alt="aged photo step 3a How to Age Photos in Photoshop"  /></div>
<p>Click on the eye icon to the left of the other layers to hide them. Next, take out the eraser brush and erase everything except your model. You don&#8217;t need to spend a great deal of time on this process, just get it generally close to the outline of your model. Once you finish doing that, change the opacity of the layer to somewhere between 50-60%.</p>
<div style="text-align: center; margin-bottom: 10px;"><img class="colorbox-862"  title="Step 3 Detail" src="http://ericheikkinen.com/file/aged-photo-step-3.jpg" alt="aged photo step 3 How to Age Photos in Photoshop"  /></div>
<h2>Step 5</h2>
<p>The final step is to un-hide the background layers to view the final result. You should now see less of the paper texture across the area that is left on the top layer.</p>
<div style="text-align: center; margin-bottom: 10px;"><img class="colorbox-862"  title="Final Result" src="http://ericheikkinen.com/file/aged-photo-final.jpg" alt="aged photo final How to Age Photos in Photoshop" width="590" height="331" /></div>
<p>You can view a larger example image on the <a href="http://ericheikkinen.com/pinup-girl-crystal/">Crystal Pinup Gallery</a>, or another sample on the <a href="http://ericheikkinen.com/pinup-girl-angie/">Angie Pinup Gallery</a>.</p>
<img src="http://feeds.feedburner.com/~r/EricHeikkinen/~4/2tx8mu8F2S4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://ericheikkinen.com/how-to-age-photos-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://ericheikkinen.com/how-to-age-photos-in-photoshop/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-age-photos-in-photoshop</feedburner:origLink></item>
		<item>
		<title>How Models can Find Free Photographers</title>
		<link>http://feedproxy.google.com/~r/EricHeikkinen/~3/VExOSRODU48/</link>
		<comments>http://ericheikkinen.com/how-models-can-find-free-photographers/#comments</comments>
		<pubDate>Sat, 19 Mar 2011 12:17:55 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[TIps & Tutorials]]></category>

		<guid isPermaLink="false">http://ericheikkinen.com/?p=783</guid>
		<description><![CDATA[<p>As a photographer I am constantly seeking new female talent to model for me, and I have used a variety of online resources to scout for local girls. This article discuses some of those websites (ModelMayhem.com, Facebook.com, OneModelPlace.com, MySpace.com, and iStudio.com) as well as some advice for ways for models to connect with photographers offline.&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>As a photographer I am constantly seeking new female talent to model for me, and I have used a variety of online resources to scout for local girls. This article discuses some of those websites (ModelMayhem.com, Facebook.com, OneModelPlace.com, MySpace.com, and iStudio.com) as well as some advice for ways for models to connect with photographers offline. I have written this article to benefit models who are looking for a photographer who will shoot them for free, often referred to as TFP (time for prints).</p>
<h2>Online Services</h2>
<table style="font-size: 11px; line-height: 1.4;" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<th></th>
<th>ModelMayhem</th>
<th>iStudio</th>
<th>OneModelPlace</th>
<th>Meetup</th>
<th>Facebook</th>
<th>MySpace</th>
</tr>
<tr>
<td class="label"><strong>Yearly Fees</strong></td>
<td align="center">Free to $100</td>
<td align="center">Free</td>
<td align="center">Free to $250</td>
<td align="center">Free to $144</td>
<td align="center">Free</td>
<td align="center">Free</td>
</tr>
<tr>
<td class="label"><strong>Portfolio Images</strong></td>
<td align="center">15</td>
<td align="center">100</td>
<td align="center">21</td>
<td align="center">Unlimited</td>
<td align="center">Unlimited</td>
<td align="center">Unlimited</td>
</tr>
<tr>
<td class="label"><strong>Private Messages</strong></td>
<td align="center">5</td>
<td align="center">Unlimited</td>
<td align="center">5</td>
<td align="center">Unlimited</td>
<td align="center">Unlimited</td>
<td align="center">Mostly Unlimited</td>
</tr>
<tr>
<td class="label"><strong>Social Platforms</strong></td>
<td align="center">Huge Forum</td>
<td align="center">Small Forum</td>
<td align="center">Medium Forum</td>
<td align="center">Status Updates and Forums</td>
<td align="center">Status Updates and Forums</td>
<td align="center">Status Updates</td>
</tr>
<tr>
<td class="label"><strong>Contests/Awards</strong></td>
<td align="center">Yes</td>
<td align="center">Yes</td>
<td align="center">Yes</td>
<td align="center">No</td>
<td align="center">No</td>
<td align="center">No</td>
</tr>
<tr>
<td class="label"><strong>Search by City</strong></td>
<td align="center">Yes</td>
<td align="center">No</td>
<td align="center">Yes</td>
<td align="center">Yes (for Groups)</td>
<td align="center">No</td>
<td align="center">No</td>
</tr>
</tbody>
</table>
<p style="font-size: 10px;"><strong>Notes:</strong></p>
<ul style="font-size: 10px;">
<li>All sites offer a free membership, while some offer some premium features for a range of prices.</li>
<li>Meetup fees only apply for starting a group. Normal membership is free with the exception of any mandated event fees.</li>
<li>Portfolio images are based on the least expensive plan offered by a service.</li>
<li>Private messages are listed as the amount allowed per day.</li>
<li>Myspace has an undefined limit on the number of private messages sent out each day to prevent spam.</li>
<li>Meetup lets you search for groups by city.</li>
</ul>
<h3><a href="http://www.modelmayhem.com/1796313" rel="nofollow">ModelMayhem.com</a></h3>
<div style="float: left; display: inline; margin: 0 10px 0px 0;"><a style="text-decoration: none;" href="http://www.modelmayhem.com/1796313" rel="nofollow"><img class="colorbox-783"  title="ModelMayhem.com" src="http://ericheikkinen.com/file/modelmayhem-logo.png" alt="modelmayhem logo How Models can Find Free Photographers"  /></a></div>
<p>ModelMayhem.com is the first site that I signed up for when becoming a photographer. They are great for both photographers and models because they offer free profiles for both classes. I believe that models are given a few more privileges, such as more space for portfolio images. The ModelMayhem.com website contains a large number of models, photographers, and artists and they make it easy to connect with people through friend requests and private messages. They offer premium accounts, where you pay an annual fee to get to add extra photos to your portfolio, send more private messages per day, and use BBCODE in your profile to add links and images. You can get by without ever having to spend a dime, but when you are ready to start getting paid for projects it is a worthwhile investment to upgrade your account.</p>
<p>One of the downsides to ModelMayhem.com is that there are several <a href="http://www.modelmayhem.com/po.php?thread_id=575330" rel="nofollow">scam operations</a> that target models. As long as you use common sense and don&#8217;t get involved with cashiers checks, credit cards, and social security numbers you should be fine.</p>
<h3><a href="http://www.meetup.com/floridaphotography/" rel="nofollow">Meetup.com</a></h3>
<div style="float: left; display: inline; margin: 0 10px 0px 0;"><a style="text-decoration: none;" href="http://www.meetup.com/floridaphotography/" rel="nofollow"><img class="colorbox-783"  title="Meetup.com" src="http://ericheikkinen.com/file/meetup-100px.png" alt="meetup 100px How Models can Find Free Photographers"  /></a></div>
<p>I use Meetup.com to organize local <a href="http://www.meetup.com/floridaphotography/" rel="nofollow">photography events in Central Florida</a>. There are a surprising number of photographers, models, and make up artists on Meetup.com throughout Florida looking to collaborate on projects. What&#8217;s great is that this system seems to really benefit the models, because they can participate in group events and be photographed by a number of different photographers at a single event. Chances are that one of those photographers will get a few great shots, and it might lead to future collaborations or work opportunities.</p>
<p>What makes Meetup.com less ideal is that it isn&#8217;t designed from the ground up to appeal to models or photographers. It&#8217;s designed to appeal to a wide audience, so a lot of features that you will find on more model-specific websites will be missing. That still doesn&#8217;t stop me from leaving Meetup.com off this list though, as it will still result in a lot of great modeling opportunities.</p>
<h3><a href="http://www.facebook.com/EricPhotography" rel="nofollow">Facebook.com</a></h3>
<div style="float: left; display: inline; margin: 0 10px 0px 0;"><a style="text-decoration: none;" href="http://www.facebook.com/EricPhotography" rel="nofollow"><img class="colorbox-783"  title="Facebook.com" src="http://ericheikkinen.com/file/facebook-100px.png" alt="facebook 100px How Models can Find Free Photographers"  /></a></div>
<p>It seems like everyone has a Facebook account these days, and that includes a number of photographers seeking to add content to their portfolios. Facebook is a decent platform because it allows you to both promote yourself as a model, as well as have a direct means of contact with photographers through their instant messaging service.</p>
<p>If you want to get serious about modeling, <a href="http://www.facebook.com/pages/create.php" rel="nofollow">create a Facebook page</a> dedicated to promoting your services. Upload your top modeling pics (amateur quality is fine if you are just starting out), and then have your friends &#8220;Like&#8221; the page. By getting viral you will quickly spread the word that you are awaiting projects and you will attract friends of friends. A major upside to this method is that you will probably have friends/family able to vouch for the photographers that find your profile.</p>
<p>One of the obvious downsides to using Facebook is that it isn&#8217;t designed to operate as a platform for connecting models with photographers. They do offer group pages, where groups of artists can join together and comment on things. This falls short of a site built from the ground up to support models like some of the other sites in this list.</p>
<h3><a href="http://www.onemodelplace.com/Heikkinen" rel="nofollow">OneModelPlace.com</a></h3>
<div style="float: left; display: inline; margin: 0 10px 0px 0;"><a style="text-decoration: none;" href="http://www.onemodelplace.com/Heikkinen" rel="nofollow"><img class="colorbox-783"  title="OneModelPlace.com" src="http://ericheikkinen.com/file/onemodelplace-logo.png" alt="onemodelplace logo How Models can Find Free Photographers"  /></a></div>
<p>I am new to OneModelPlace.com, but I can already tell that it seems to cater more towards adult themes (nude or erotic) more than commercial, fashion, or other casual types of portrait photography. If you are looking to attract photographers who deal a large part in nude photography, OneModelPlace.com might be a good fit for you. Not that all photographer members on the site are looking for those types of projects (I maintain an account there after all). Models have the ability to easily select what types of modeling they are interested in, which makes it clear what genre&#8217;s they are comfortable with. Models also have the benefit of getting a free account where other member types have to pay a monthly fee.</p>
<h3><a href="http://istudio.com/florida" rel="nofollow">iStudio.com</a></h3>
<div style="float: left; display: inline; margin: 0 10px 0px 0;"><a style="text-decoration: none;" href="http://istudio.com/florida" rel="nofollow"><img class="colorbox-783"  title="iStudio.com" src="http://ericheikkinen.com/file/istudio-logo.png" alt="istudio logo How Models can Find Free Photographers"  /></a></div>
<p>iStudio was recently bought by OneModelPlace.com. They are a clone of ModelMayhem.com, with a significantly smaller audience. When you sign up for an account at iStudio they offer to copy over data from an existing ModelMayhem.com account to make setting up a new account easy as pie. While iStudio&#8217;s community is tiny compared to that of ModelMayhem.com, they offer several improvements and upgrades such as unlimited private messages and up to 100 portfolio images. Because they make it so easy to copy over an existing ModelMayhem.com profile I recommend that you set up an iStudio.com profile after completing your ModelMayhem.com portfolio to cast a wider net and find more photographers.</p>
<h3><a href="http://www.myspace.com/dslrphoto" rel="nofollow">MySpace.com</a></h3>
<div style="float: left; display: inline; margin: 0 10px 0px 0;"><a style="text-decoration: none;" href="http://myspace.com/dslrphoto" rel="nofollow"><img class="colorbox-783"  title="Myspace.com" src="http://ericheikkinen.com/file/myspace-logo.png" alt="myspace logo How Models can Find Free Photographers"  /></a></div>
<p>Believe it or not, people still use MySpace.com! Granted, the numbers are quickly dwindling. I maintain <a href="http://www.myspace.com/dslrphoto" rel="nofollow">a photography page on MySpace.com</a> to attract potential models and clients, but it has yet to result in a single lead. I even spent quite a bit of time trying to contact local talent, but it appears that MySpace is not a venue worth exploring for models or photographers since so many people have already jumped ship for Facebook.</p>
<h3><a href="http://craigslist.org/">Craigslist.org</a></h3>
<p>Craigslist is the shadiest of the online options, because you don&#8217;t have an online portfolio or profile to refer to. Without a portfolio you can&#8217;t verify the quality of work or check out a photographer&#8217;s references. Photographers frequently post casting calls for models in the &#8220;Gigs&#8221; section, usually under &#8220;Creative&#8221; and &#8220;Talent&#8221; categories. If you choose to go this route, I suggest that you ask the photographer for some portfolio examples before taking the conversation even futher. You should also be careful when meeting with them the first time and you should bring an escort to shoots until you are comfortable with the photographer.</p>
<p>Want to learn a little more about a photographer before meeting them in person? Do a little research and check if they have a profile on Facebook. A person&#8217;s Facebook account will tell you a lot about them, and it also verifies their identity.</p>
<h2>Offline Services</h2>
<h3>Schools and Campuses</h3>
<p>If you attend, or are local to, a university or college you are in proximity to photographic talent. Every school (even technical schools) has at least a handful of photographers looking for models. Some of those photographers might be amateurs, while others may have enough skill and talent to land them a job at Vogue. Get your name out there by hanging a flyer on campus, just attach a simple hips to head shot with your name and number (or email). If the school has an art department give your name and contact info to one of the staff who could pass it on to the relevant professors.</p>
<h3><a href="http://maps.google.com/maps/place?cid=11666267223149229438&amp;q=Eric+Heikkinen+Photography,+4900+SW+46th+Court,+Apt.+2806,+Ocala,+FL+34474&amp;hl=en&amp;sll=29.137243,-82.193645&amp;sspn=0.007653,0.010486&amp;ie=UTF8&amp;ll=29.14444,-82.20417&amp;spn=0,0&amp;t=h&amp;z=16" rel="nofollow">Google Maps</a></h3>
<p>A combination of both online and offline, this method isn&#8217;t for girls who are shy of making cold calls. Start by searching Google Maps for a local photographer, then calling them to ask if they could use a model for a TFP session. Many local photographers are willing to photograph models for free, as long as they are willing to sign a model release form.</p>
<img src="http://feeds.feedburner.com/~r/EricHeikkinen/~4/VExOSRODU48" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://ericheikkinen.com/how-models-can-find-free-photographers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://ericheikkinen.com/how-models-can-find-free-photographers/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-models-can-find-free-photographers</feedburner:origLink></item>
		<item>
		<title>Shooting on a Budget</title>
		<link>http://feedproxy.google.com/~r/EricHeikkinen/~3/df0t5NtAiBw/</link>
		<comments>http://ericheikkinen.com/shooting-on-a-budget/#comments</comments>
		<pubDate>Wed, 09 Mar 2011 05:58:10 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[TIps & Tutorials]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://ericheikkinen.com/?p=704</guid>
		<description><![CDATA[<p>I have had some requests from other photographers looking to invest in speedlite equipment for the first time. I remember being in the same situation not long ago, and spending hours researching all of the possibilities. If I had to do it all over again I could have probably saved myself both time and money knowing what I do today. That's why I'm writing this article, which will highlight some of the best photographic equipment you can get on a small budget.</p>]]></description>
			<content:encoded><![CDATA[<p><span style="font-style: italic;">Suggestions for investing in your first speedlight and accessories.</span></p>
<div style="float: right; width: 250px; margin: 20px; font-size: 11px;">
<table>
<tbody>
<tr>
<th>Single Speedlite Setup</th>
<th style="width: 35px;">Cost</th>
</tr>
<tr>
<td><a href="http://www.amazon.com/gp/product/B004GZLFHM?ie=UTF8&amp;tag=yankidanvideo-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B004GZLFHM" rel="nofollow">Yongnuo YN-560</a></td>
<td>$71</td>
</tr>
<tr>
<td><a href="http://www.amazon.com/gp/product/B0042TYNJ4?ie=UTF8&amp;tag=yankidanvideo-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0042TYNJ4" rel="nofollow">Yongnuo RF-602</a></td>
<td>$40</td>
</tr>
<tr>
<td>Light Stand</td>
<td>$35</td>
</tr>
<tr>
<td><a href="http://www.mpex.com/browse.cfm/4,11776.html" rel="nofollow">Umbrella Swivel Adapter</a></td>
<td>$18</td>
</tr>
<tr>
<td>White Umbrella</td>
<td>$14</td>
</tr>
<tr>
<td style="background: #FFFCDF; padding: 4px 4px 6px 4px; border-top: 1px solid #eee;"><strong>Total</strong></td>
<td style="background: #FFFCDF; padding: 4px 4px 6px 4px; border-top: 1px solid #eee;"><strong>$160</strong></td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<table>
<tbody>
<tr>
<th>3 Speedlite Setup</th>
<th style="width: 35px;">Cost</th>
</tr>
<tr>
<td><a href="http://www.amazon.com/gp/product/B004GZLFHM?ie=UTF8&amp;tag=yankidanvideo-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B004GZLFHM" rel="nofollow">Yongnuo YN-560</a></td>
<td>$213</td>
</tr>
<tr>
<td><a href="http://www.amazon.com/gp/product/B0042TYNJ4?ie=UTF8&amp;tag=yankidanvideo-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0042TYNJ4" rel="nofollow">Yongnuo RF-602</a></td>
<td>$40</td>
</tr>
<tr>
<td><a href="http://www.amazon.com/gp/product/B0042TYNJ4?ie=UTF8&amp;tag=yankidanvideo-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0042TYNJ4" rel="nofollow">(2) Yongnuo RF-602 Receivers</a></td>
<td>$46</td>
</tr>
<tr>
<td>(3) Light Stands</td>
<td>$105</td>
</tr>
<tr>
<td><a href="http://www.mpex.com/browse.cfm/4,11776.html" rel="nofollow">(3) Umbrella Swivel Adapter</a></td>
<td>$54</td>
</tr>
<tr>
<td>White Umbrella</td>
<td>$14</td>
</tr>
<tr>
<td><a href="http://www.amazon.com/gp/product/B001BSQK8Q?ie=UTF8&amp;tag=yankidanvideo-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B001BSQK8Q" rel="nofollow">PBL Umbrella Softbox</a></td>
<td>$20</td>
</tr>
<tr>
<td style="background: #FFFCDF; padding: 4px 4px 6px 4px; border-top: 1px solid #eee;"><strong>Total</strong></td>
<td style="background: #FFFCDF; padding: 4px 4px 6px 4px; border-top: 1px solid #eee;"><strong>$492</strong></td>
</tr>
</tbody>
</table>
</div>
<p>I have had some requests from other photographers looking to invest in speedlite equipment for the first time. I remember being in the same situation not long ago, and spending hours researching all of the possibilities. If I had to do it all over again I could have probably saved myself both time and money knowing what I do today. That&#8217;s why I&#8217;m writing this article, which will highlight some of the best photographic equipment you can get on a small budget.</p>
<p>In the tables to the right I have put together 2 kits and outlined a budget for each. The first kit consists of a single speedlight as well as a radio trigger and receiver, stand, swivel mount, and shoot through umbrella. This is the most basic setup that can be used in a number of situations and got me by for a number of months before I stepped up to my current 3 light setup. The second table demonstrates such a 3 light kit. It contains 3 speedlights, 1 radio transmitter with 3 receivers, 3 stands (estimated prices), 3 swivel mounts, 1 shoot through umbrella, and 2 umbrella softboxes. The final price for this kit is significantly more, but it is still a fairly small budget. Because of the equipment selected the kit cost is relatively small when compared to other products.</p>
<p>If you are operating on a budget, I suggest getting a Yongnuo YN-560 as your speedlite. While this speedlite is only capable of manual settings (non E-TTL) it performs just about as well and has the same build quality as the much more expensive Canon 430EX II. In fact, you can buy about 4 of the Yongnuo units for the same price as one Canon 430EX II flash. I own a Yongnuo YN-560, a LumoPro LP160, and a Canon 430EX II. The LumoPro is bar far my least favorite. The design is bulky and not well though out. The Canon is nice and has the most professional feel, but the Yongnuo gives you a big bang for the buck value.</p>
<p>Next you will want some radio units to remotely control your flash units. This allows you to detach the speedlite flash from the top of your camera and move it onto a stand. The transmitter fits to the hot shoe mount on top of your camera, while the receivers fit to the bottom of the hot shoe mounts on your speedlite units. A transmitter/receiver pair cost about $40 through Amazon. You can save a few bucks ordering through a seller based out of Asia on eBay, but the shipping time will be significantly longer. Extra receivers cost about $27 on Amazon.</p>
<p>Now for a light stand, which your speedlight will sit on top of. A good general use light stand should be able to stand up at least 8&#8242; high. You should also make sure that the stand is &#8220;air-cushioned&#8221;, this means that when you unscrew the stand to fold it up the stand won&#8217;t quickly fall in on itself and damage your speedlite. Instead the stand will have a slow &#8220;cushioned&#8221; fall, which is a great feature when you have a fragile light unit 8 feet up in the air. I have yet to find a perfect stand, so I won&#8217;t be posting a specific recommendation at this time. You can expect to pay around $30-40 for a mid range stand. Smaller, more portable stands will sometimes sell for less, while large and more stable stands will be significantly more expensive. In order for you to attach a speedlight to a light stand you will need an adapter. Of the couple that I&#8217;ve tried out, I am happiest with the <a href="http://www.mpex.com/browse.cfm/4,11776.html" rel="nofollow">LumoPro LP633</a>.</p>
<p>The next set of items that you will want are some light modifiers. Usually modifiers are used to soften light by spreading it across a larger surface (like a softbox or umbrella), but there are modifiers for changing the shape and direction of the light. I am a big fan of the <a href="https://www.amazon.com/dp/B001BSQK8Q?tag=yankidanvideo-20&amp;camp=213381&amp;creative=390973&amp;linkCode=as4&amp;creativeASIN=B001BSQK8Q&amp;adid=0KAD6WMT49VVJD47FR5D&amp;" rel="nofollow">PBL Photo Studio Umbrella Softboxes</a>, which can be picked up <a href="https://www.amazon.com/dp/B001BSQK8Q?tag=yankidanvideo-20&amp;camp=213381&amp;creative=390973&amp;linkCode=as4&amp;creativeASIN=B001BSQK8Q&amp;adid=0KAD6WMT49VVJD47FR5D&amp;" rel="nofollow">from Amazon for $20</a> for a pair. They are easy to set up and work great for a variety of setups (<a href="http://ericheikkinen.com/pbl-photo-studio-umbrella-softbox-review/">see my review for examples</a>). Another item to add to your arsenal is a shoot-through white umbrella. Umbrellas are a staple item that work well indoors and out. Small umbrellas seem to perform about the same, so purchase one that has a lot of positive reviews on retailer websites and fits in your budget. A medium size (about 40&#8243;) umbrella should cost somewhere around $15-20.</p>
<p>That is all there is to it when it comes to setting up a basic off camera lighting solution. The most painful part about putting together one of these kits is waiting for the items to arrive at your doorstep. Leave a comment if you have a recommendation for other products not mentioned, or to endorse products already suggested.</p>
<img src="http://feeds.feedburner.com/~r/EricHeikkinen/~4/df0t5NtAiBw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://ericheikkinen.com/shooting-on-a-budget/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://ericheikkinen.com/shooting-on-a-budget/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=shooting-on-a-budget</feedburner:origLink></item>
		<item>
		<title>Photo Post Production Workflow</title>
		<link>http://feedproxy.google.com/~r/EricHeikkinen/~3/jnBiLopfX64/</link>
		<comments>http://ericheikkinen.com/photo-post-production-workflow/#comments</comments>
		<pubDate>Sat, 05 Mar 2011 10:48:07 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Photo Editing]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Workflow]]></category>

		<guid isPermaLink="false">http://ericheikkinen.com/?p=671</guid>
		<description><![CDATA[<p><iframe src="http://www.youtube.com/embed/LDxDwX3AJSo?rel=0" frameborder="0" width="660" height="365"></iframe></p>
<p>In this article I am documenting my post production worfklow involving Adobe Lightroom, Portrait Professional, and Adobe Photoshop. The amount of time needed to edit a photo using all 3 of these software solutions is significant, so I tend to only complete all 3 steps with only my top picks from each shoot.&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://www.youtube.com/embed/LDxDwX3AJSo?rel=0" frameborder="0" width="660" height="365"></iframe></p>
<p>In this article I am documenting my post production worfklow involving Adobe Lightroom, Portrait Professional, and Adobe Photoshop. The amount of time needed to edit a photo using all 3 of these software solutions is significant, so I tend to only complete all 3 steps with only my top picks from each shoot. Normally I will do all of the work within Lightroom, which gives me a lot of control over the image, but doesn&#8217;t offer the touch up tools required to finish an image at a more professional level.</p>
<p>Once I have done some general image editing to get the color, contrast, and lighting where I want it I will export a copy of the image and open it up with Portrait Professional. You may have at least heard of Portrait Professional because they advertise in just about every photography magazine out there. I frequently see ads for them in Popular Photography. After trying out a demo version I purchased a copy for a decent price and use it mainly to smooth out skin and hair. It&#8217;s a partially automated system that also has some features that attempt to manipulate your subjects facial features to make them more pleasant looking. The settings allow you to change the size of the subject&#8217;s forehead, eyes, jaw, etc. Sometimes applying these types of &#8220;improvements&#8221; will produce some nice results, other times it will slightly disfigure the subject or leave noticeable issues around the area that was altered. I disable these features, but I can see why some people might want to use them and get a little creative.</p>
<div style="text-align: center;">
<p><a href="http://ericheikkinen.com/file/before.jpg"><img class="alignnone size-medium wp-image-673 colorbox-671" title="Before" src="http://ericheikkinen.com/file/before-450x253.jpg" alt="before 450x253 Photo Post Production Workflow" width="450" height="253" /></a></p>
<p><a href="http://ericheikkinen.com/file/after.jpg"><img class="alignnone size-medium wp-image-672 colorbox-671" title="After" src="http://ericheikkinen.com/file/after-450x253.jpg" alt="after 450x253 Photo Post Production Workflow" width="450" height="253" /></a></p>
</div>
<p>After completing the skin and hair smoothing in Portrait Professional I will bring a copy of the image into Adobe Photoshop. This is where I will fine tune some left over blemishes, remove or edit any aspects of the photo that I don&#8217;t want. An example would be to change the color of an earring, or to remove an earring altogether.</p>
<p>All of these steps take me a little over half an hour to perform. The video accompanying this article was sped up to 5x the original speed and in real time lasts 36 minutes. The good news is the the Lightroom step can be streamlined so that once you have set up the settings for one image you can apply those same effects to similar shots in your gallery with a couple clicks. That cuts down the amount of development time significantly when working with a gallery of images. Lightroom presets also help speed up the process if you find yourself applying a similar style to most of your photos.</p>
<img src="http://feeds.feedburner.com/~r/EricHeikkinen/~4/jnBiLopfX64" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://ericheikkinen.com/photo-post-production-workflow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://ericheikkinen.com/photo-post-production-workflow/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=photo-post-production-workflow</feedburner:origLink></item>
	</channel>
</rss>

