<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Printer's Place of Philadelphia</title>
	<atom:link href="http://printersplace.com/feed" rel="self" type="application/rss+xml" />
	<link>http://printersplace.com</link>
	<description>Printing Tips &#38; Info</description>
	<pubDate>Fri, 16 May 2008 18:53:01 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<item>
		<title>Here is a Cool Photoshop Tutorial To Use After Using Your Digital Camera</title>
		<link>http://printersplace.com/archives/32</link>
		<comments>http://printersplace.com/archives/32#comments</comments>
		<pubDate>Sat, 26 Apr 2008 18:48:00 +0000</pubDate>
		<dc:creator>PrinterBuzz</dc:creator>
		
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://printersplace.com/?p=32</guid>
		<description><![CDATA[ 
Our love of digital cameras seems to be because the results are instant as film is no longer required to be processed. Most of the mechanical parts of a traditional film camera are no longer necessary except for the optical zoom lens. You no longer have to send photos to a developing lab to [...]]]></description>
			<content:encoded><![CDATA[<p><img src ="http://www.printersplace.com/images/tbtut250.jpg" align ="left"> </p>
<p>Our love of digital cameras seems to be because the results are instant as film is no longer required to be processed. Most of the mechanical parts of a traditional film camera are no longer necessary except for the optical zoom lens. You no longer have to send photos to a developing lab to have the pictures blown up or adjusted as long as you have a home computer. Whilst the image storage may be digital, the end result looks no different from a picture printed from photographic film.</p>
<p>Just like conventional cameras, this type is furnished with a series of lenses that focus the light and creates the image that you want to capture.  The difference between the two is a conventional camera focuses its light on a film while a digital camera focuses the light onto a device that electronically records the light.  There are two methods of achieving this; one is more expensive than the other and called a CCD or charge coupled device. The CMOS device is used in cheaper cameras and does the same work as a CCD but it is doubtful that this system will replace those devices in the quality models.</p>
<p>The price has been depreciating recently and one of the main reasons for this is the introduction of CMOS image sensors; because CMOS sensors are less expensive and are easier to manufacture than CCD sensors.  The CCD and CMOS devices used in digital cameras capture light like tiny solar collectors both achieving the same effect but just by differing methods. Shopping for one of these types of camera can be daunting but a few tips can make all the difference. Image quality is important or it will be waste of time taking them so look for the highest megapixel model within your price range; the higher the resolution of the camera the bigger the photos that can be printed.</p>
<p>Better photos will be taken with a digital camera that has an optical zoom and not just a digital zoom;  perhaps you can remember how grainy and blurred images become when you used your camcorder&#8217;s digital zoom function? Don&#8217;t waste your money on standard disposable batteries as rechargeable ones these days are very affordable and long lasting which could save you hundreds of dollars on standard ones. Although most are supplied with a number of photo functions, try for as many as you can because you will appreciate the effects that can be achieved; just like some of these here:</p>
<ul>
<li>Picture frame effects</li>
<li>Time lapse (i.e. one shot every 5 minutes for example)</li>
<li>Negative image</li>
</ul>
<p>You will also need something to store the captured images on especially with the high megapixel models available today. Think 1GB as a bare minimum with today&#8217;s high resolution models so if you&#8217;re a photo junkie you can takes pictures of just about anything.</p>
<p>For photographers who will keep the camera with them at all time you may want to consider one of the more compact types that can be carried in a shirt pocket. Professional photographers may need heavy, bulky equipment but there is no requirement for a keen amateur to do so! I trust the brief information that has been supplied here will help you with your choice of camera. The future of photography has moved on and digital cameras are that future with almost everyone carrying around one type or another every day!</p>
]]></content:encoded>
			<wfw:commentRss>http://printersplace.com/archives/32/feed</wfw:commentRss>
		</item>
		<item>
		<title>Online Proportion Wheel</title>
		<link>http://printersplace.com/archives/24</link>
		<comments>http://printersplace.com/archives/24#comments</comments>
		<pubDate>Sat, 26 Apr 2008 16:59:37 +0000</pubDate>
		<dc:creator>PrinterBuzz</dc:creator>
		
		<category><![CDATA[Printing Tips]]></category>

		<category><![CDATA[graphic design]]></category>

		<category><![CDATA[graphics]]></category>

		<category><![CDATA[online proportion wheel]]></category>

		<category><![CDATA[printing]]></category>

		<guid isPermaLink="false">http://printersplace.com/?p=24</guid>
		<description><![CDATA[		
		
	    
	
		


			Proportions!
Get Percent

				


Enter original size please:




Enter new size please:










Get New Size



Enter original size please:










Enter new percent:




This utility functions like an online proportion wheel.

]]></description>
			<content:encoded><![CDATA[<p>		<script language="JavaScript"><!--</p>
<p>function roundoffthepercent(dapercent) {</p>
<p>	inputStr = ""  + eval(dapercent)</p>
<p>	decLoc = inputStr.indexOf(".")</p>
<p>	if (decLoc == -1) {</p>
<p>		return inputStr + ".00 %"</p>
<p>	}</p>
<p>	dollars = inputStr.substring(0,decLoc)</p>
<p>	cents ="" + Math.round(inputStr.substring(decLoc,inputStr.length) * 100)</p>
<p>	cents = (cents.length == 1) ? "0" + cents: cents</p>
<p>	return  dollars + "." + cents + " %"</p>
<p>}</p>
<p>function roundoffthenumber(dapercent) {</p>
<p>	inputStr = ""  + eval(dapercent)</p>
<p>	decLoc = inputStr.indexOf(".")</p>
<p>	if (decLoc == -1) {</p>
<p>		return inputStr + ".00"</p>
<p>	}</p>
<p>	dollars = inputStr.substring(0,decLoc)</p>
<p>	cents ="" + Math.round(inputStr.substring(decLoc,inputStr.length) * 100)</p>
<p>	cents = (cents.length == 1) ? "0" + cents: cents</p>
<p>	return  dollars + "." + cents</p>
<p>}</p>
<p>function GetPercent( originalnumber, newnumber )</p>
<p>{</p>
<p>var newpercent</p>
<p>newpercent = (newnumber / originalnumber) * 100</p>
<p>return newpercent</p>
<p>}</p>
<p>function GetNewSize( newpercent, oldsize )</p>
<p>{</p>
<p>var newsize</p>
<p>newsize = ((newpercent * .01) * oldsize)</p>
<p>return newsize</p>
<p>}</p>
<p>// --></p>
<p>		</script></p>
<p>	    </head></p>
<p>	<body></p>
<p>		<center></p>
<h1>
<form>
<p>			<font color="teal">Proportions!</font></h1>
<p><p><b><font size="3" face="Times New Roman,Georgia,Times">Get Percent</font></b></p>
<table border="4" cellpadding="2" cellspacing="2">
<p>				</font><br />
<caption align="bottom"></caption>
<tr>
<td bgcolor="blue"><font color="white"><b>Enter original size please:</b></font></td>
<td bgcolor="blue">
<input type="text" name="entry1" size="24"></td>
</tr>
<tr>
<td bgcolor="blue"><font color="white"><b>Enter new size please:</b></font></td>
<td bgcolor="blue">
<input type="text" name="entry2" size="24"></td>
</tr>
<tr>
<td bgcolor="blue">
<input type="button" name="makeMoney" value="Calculate Percent" size="19" onclick="Freddy=GetPercent(this.form.entry1.value, this.form.entry2.value);this.form.entry3.value = roundoffthepercent(Freddy);this.form.entry3.focus();this.form.entry3.select()"></td>
<td bgcolor="blue">
<input type="text" name="entry3" size="24"></td>
</tr>
</table>
<p><font face="Times New Roman,Georgia,Times" size="3"><b>Get New Size</b></font></p>
<table border="4" cellpadding="2" cellspacing="2">
<caption align="bottom"></caption>
<tr>
<td bgcolor="blue"><font color="white"><b>Enter original size please:</b></font></td>
<td bgcolor="blue">
<input type="text" name="entry4" size="24"></td>
</tr>
<tr>
<td bgcolor="blue">
<input type="button" name="makeNewSize" value="Calculate Size" size="19" onclick="Freddy=GetNewSize(this.form.entry4.value, this.form.entry6.value);this.form.entry5.value = roundoffthenumber(Freddy);this.form.entry5.focus();this.form.entry5.select()"></td>
<td bgcolor="blue">
<input type="text" name="entry5" size="24"></td>
</tr>
<tr>
<td bgcolor="blue"><font color="white"><b>Enter new percent:</b></font></td>
<td bgcolor="blue">
<input type="text" name="entry6" size="24"></td>
</tr>
</table>
<p>This utility functions like an online proportion wheel.</p>
<p></center></p>
]]></content:encoded>
			<wfw:commentRss>http://printersplace.com/archives/24/feed</wfw:commentRss>
		</item>
		<item>
		<title>Print Tips: Wedding Photography</title>
		<link>http://printersplace.com/archives/30</link>
		<comments>http://printersplace.com/archives/30#comments</comments>
		<pubDate>Fri, 25 Apr 2008 02:02:20 +0000</pubDate>
		<dc:creator>PrinterBuzz</dc:creator>
		
		<category><![CDATA[Digital Imagery]]></category>

		<category><![CDATA[digital photography]]></category>

		<category><![CDATA[digitial images]]></category>

		<guid isPermaLink="false">http://printersplace.com/?p=30</guid>
		<description><![CDATA[So much happens at a wedding that without photographic images, many of the days events would be lost; although digital wedding photography is usually carried out by a professional, you can guarantee a large number of people will have their cameras with them. Although times have changed and it is quite normal to have a DVD made as well, nothing can replace a conventional photo.]]></description>
			<content:encoded><![CDATA[<p>So much happens at a wedding that without <strong>photographic images</strong>, many of the days events would be lost; although digital wedding photography is usually carried out by a professional, you can guarantee a large number of people will have their cameras with them. Although times have changed and it is quite normal to have a DVD made as well, nothing can replace a conventional photo.</p>
<p>This isn&#8217;t easy; creating that perfect shot if you are taking <strong>photographs </strong>without help as there is only so much you can do on your own without help. This article highlights a few basic techniques and styles for anyone who wants to capture a friend or family members wedding using a digital camera.</p>
<p>Many amateur photographers make the mistake of taking pictures with a boring background which is not something you want in a wedding photo. Often when there is a good background there are just too many people in the shot, so if this is the situation, just try and capture a nice head and shoulders shot of the couple.</p>
<p>Although you don&#8217;t always think about it at the time, try to ensure those wedding guests wearing spectacles either take them off or provide you with a semi-profile shot. Although some interesting effects can be achieved when you take a picture of a subject with the light behind them this may not be the right occasion to experiment so make sure the light is behind you when you take your shot.</p>
<p>Natural, wedding photos always look better than staged ones but difficult to capture when you are too close so a powerful zoom lens is a great advantage. As you can&#8217;t keep asking people to pose for you, always have the camera to hand because digital wedding photography is just as much about having natural, un-posed for shots.</p>
<p>All your efforts will be wasted if you forget to have fresh batteries or carry enough memory for your digital camera to take every image from the day. Professional digital slr cameras start at 6 mega pixels and very few compacts are now below that so your card will need to be a minimum of one gigabyte to be on the safe side.</p>
<p>Always remember that the higher the resolution used, the larger the size of prints that can be made so always keep a secure copy of your work so you can re-use them in the future. You can do this by saving albums on your personal computer to free up the space on your memory card or burn them to a CD or DVD.</p>
<p>A new generation has grown up not really knowing what film photography is like, so to them digital wedding photography is quite normal.</p>
]]></content:encoded>
			<wfw:commentRss>http://printersplace.com/archives/30/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
