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

<channel>
	<title>Tutorial Dog &#187; Photoshop Tutorial</title>
	<atom:link href="http://tutorialdog.com/topic/photoshop_tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://tutorialdog.com</link>
	<description>Man's best friend for learning</description>
	<lastBuildDate>Mon, 24 Aug 2009 05:36:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Javascript Dock Carousel Using Mootools (Part 2)</title>
		<link>http://tutorialdog.com/javascript-dock-carousel-using-mootools-part-2/</link>
		<comments>http://tutorialdog.com/javascript-dock-carousel-using-mootools-part-2/#comments</comments>
		<pubDate>Mon, 21 Jul 2008 12:00:36 +0000</pubDate>
		<dc:creator>Devin</dc:creator>
				<category><![CDATA[Javascript Tutorial]]></category>
		<category><![CDATA[Photoshop Tutorial]]></category>
		<category><![CDATA[dock]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[jscript]]></category>
		<category><![CDATA[Mac OS X Tutorial]]></category>
		<category><![CDATA[mootools]]></category>
		<category><![CDATA[net tutorial]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://tutorialdog.com/?p=291</guid>
		<description><![CDATA[This tutorial is the second part of a tutorial that will build a javascript carousel that imitates the Mac OS X dock. In part one, we build a mock up in Photoshop and exported the nessecary images. In this part, we'll take those images and build it into a HTML &#038; CSS. Then we'll use javascript to make if interact.]]></description>
			<content:encoded><![CDATA[<p>This tutorial is the second part of a tutorial that will build a javascript carousel that imitates the Mac OS X dock. In part one, we build a <a href="http://tutorialdog.com/javascript-dock-carousel-using-mootools-part-1/">mock up in Photoshop and exported the nessecary images</a>. In this part, we&#8217;ll take those images and build it into a HTML &amp; CSS. Then we&#8217;ll use javascript to make if interact.</p>
<p><a class="demo" href="/icon_carousel/">Demo</a> <a class="files" href="/icon_carousel/icon_carousel.zip">Files</a></p>
<p><strong>Step 1: The HTML</strong> To keep things organized, we&#8217;ll seperate the files into there own folders. So we&#8217;ll have a &#8220;js&#8221; folder to keep all the Javascript files, an &#8220;images&#8221; folder to hold all the webpage images, and a &#8220;icons&#8221; folder to hold the icon images. What needs to be in the HTML? Well, the links to move the stage left and right, the stage and all the icons and finally the text image. The &#8220;wrapper&#8221; class you will see later enables the icons on the next slide to hide. The icons are there own list elements.</p>
<div class="bannerimagead">Javascript applications run better with specialized <a href="http://www.webhostingsearch.com/jsp-web-hosting.php">Java hosting</a>. It ensures smooth, error free work of Java based websites or any Java script for that matter.</div>
<pre>
<span style="letter-spacing: 0.0px;">&lt;div id="stage-container"&gt;
 <span style="white-space: pre;"> </span>&lt;img src="images/text.gif" alt="image" width="111" height="24" /&gt;
 <span style="white-space: pre;"> </span>&lt;a id="moveleft"&gt;Left&lt;/a&gt;
 <span style="white-space: pre;"> </span>&lt;a id="moveright"&gt;Right&lt;/a&gt;
 <span style="white-space: pre;"> </span>&lt;div id="wrapper"&gt;&lt;ul id="items"&gt;
 <span style="white-space: pre;"> </span>&lt;li&gt;&lt;a&gt;&lt;img src="icons/1.png" alt="image" width="32" /&gt;&lt;/a&gt;&lt;/li&gt;
 <span style="white-space: pre;"> </span>&lt;li&gt;&lt;a&gt;&lt;img src="icons/2.png" alt="image" /&gt;&lt;/a&gt;&lt;/li&gt;
 <span style="white-space: pre;"> </span>&lt;li&gt;&lt;a&gt;&lt;img src="icons/3.png" alt="image" /&gt;&lt;/a&gt;&lt;/li&gt;
 <span style="white-space: pre;"> </span>&lt;li&gt;&lt;a&gt;&lt;img src="icons/4.png" alt="image"/&gt;&lt;/a&gt;&lt;/li&gt;
 <span style="white-space: pre;"> </span>&lt;li&gt;&lt;a&gt;&lt;img src="icons/5.png" alt="image" /&gt;&lt;/a&gt;&lt;/li&gt;
 <span style="white-space: pre;"> </span>&lt;li&gt;&lt;a&gt;&lt;img src="icons/10.png" alt="image"/&gt;&lt;/a&gt;&lt;/li&gt;
 <span style="white-space: pre;"> </span>&lt;li&gt;&lt;a&gt;&lt;img src="icons/6.png"/&gt;&lt;/a&gt;&lt;/li&gt;
 <span style="white-space: pre;"> </span>&lt;li&gt;&lt;a&gt;&lt;img src="icons/7.png"/&gt;&lt;/a&gt;&lt;/li&gt;
 <span style="white-space: pre;"> </span>&lt;li&gt;&lt;a&gt;&lt;img src="icons/8.png" /&gt;&lt;/a&gt;&lt;/li&gt;
 <span style="white-space: pre;"> </span>&lt;li&gt;&lt;a&gt;&lt;img src="icons/9.png" /&gt;&lt;/a&gt;&lt;/li&gt;
 <span style="white-space: pre;"> </span>&lt;/ul&gt;&lt;/div&gt;
 &lt;/div&gt;</span></pre>
<p>Now lets set up the header of the HTML document. We wan&#8217;t an XHTML tranistional document so that all the javascript is compliant and works. We need to reference the Mootools library, and the javascript that makes the stage work as well as the css file. We&#8217;ll deal with getting those files later.</p>
<pre>&lt;script src="js/mootools-12-core.js" type="text/javascript"&gt;&lt;!--mce:0--&gt;&lt;/script&gt; &lt;!-- MOOTOOLS 1.2  --&gt;
&lt;script src="js/mootools-12-more.js" type="text/javascript"&gt;&lt;!--mce:1--&gt;&lt;/script&gt; &lt;!-- MOOTOOLS 1.2  --&gt;
&lt;script src="js/dock.js" type="text/javascript"&gt;&lt;!--mce:2--&gt;&lt;/script&gt; &lt;!--   IMAGE GALLERY   --&gt;</pre>
<p><strong>Step 2: The CSS</strong> The trickiest part of the CSS is understanding the fact that we&#8217;re making the ul extend beyond the &#8216;div id=&#8221;wrapper&#8221;&#8216;. The image below explains how the tags appear with the CSS. The ul element extends because the class &#8220;items&#8221; has a width of 5000px, and the &#8220;wrapper&#8221; id has an overflow of hidden. The buttons are floated on either side of the stage, and the text is hidden with the text-indent attribute. To get a tag to conform to specified widths and heights, we use the &#8216;display: block&#8217; attribute.</p>
<div class="imagef"><img src="/wp-content/uploads/carousel/part2_1.gif" alt="image" width="540" height="308" /></div>
<pre>body{
background:#232323;
color:white;
}
#stage-container{
margin: 50px auto;
width: 420px;
}
#stage-container .text{text-align: center;}
#stage-container a{outline: none;}
/* — STAGE — */
#stage-container #wrapper{
overflow:hidden;
margin: 0px auto;
width:352px;
height:55px;
background: url(images/stage2.jpg);
position: relative;
}
#stage-container #items{
margin:0px;
padding:0px 6px;
list-style:none;
width:5000px;
position: relative;
}
#stage-container #items li{
float:left;
list-style:none;
margin-right:5px;
padding: 6px 6px;
margin-top: 5px;
}
/* — BUTTONS — */
#stage-container #moveleft{
float: left;
background: url(images/left.gif);
}
#stage-container #moveright{
background: url(images/right.gif);
float: right;
}
#stage-container #moveright,#moveleft{
height: 20px;
width: 20px;
display: block;
z-index: 10;
text-indent: -3000em;
margin-top: 18px;
}</pre>
<p><strong>Step 3: The Javascript</strong> First, we&#8217;ll be using the newly released <a href="http://mootools.net/">Mootools 1.2</a> for this javascript. Mootools is a &#8220;compact, modular, Object-Oriented JavaScript framework designed for the intermediate to advanced JavaScript developer. It allows you to write powerful, flexible, and cross-browser code with its elegant, well documented, and coherent API.&#8221; We&#8217;ll be utilizing the scroller class and the Fx classes to achieve the entire effects on the icons. Like almost all mootools scripts, we need to enclose the javascript in a dom ready action. What this does is not let the javascript work until all the javascript is completely loaded by the user.</p>
<p class="code">window.addEvent(&#8217;domready&#8217;, function() {<br />
// Your code here<br />
});</p>
<p>The first part of javascript just deals with moving the stage left and right. We need to tell the javascript where to slide the stage, if it can slide the stage left or right and how much to slide. When a button is clicked it triggers an event to move the slide left or right depending on which is clicked. The slides must figure out though if it can move left or right. We don&#8217;t want to move left if there is no icons to the left of the current slide. These issues are what the variables at the top of the javascript deal with.</p>
<p>The image in step 2 will help illustrated how the javascript is working. The unordered list element (ul id=&#8221;items&#8221;) is being shifted left and right by the javascript (thats why is larger than the stage). The shift is triggered by a hyperlink tag (&#8217;a').</p>
<pre>var slides = 2; // CHANGE THIS TO THE NUMBER OF SLIDES
var pos = 0; // default setting, start at the first(0) pixel
var offset = 346; // How many pixels the slider should move to get to the next slide
var currentslide = 1; // first slide is the default slide
var items = $('items'); // items variable for the id 'items' in the html
var fx = items.effects({
duration: 800,
transition: Fx.Transitions.linear
}); // the way the items transition is described here
/* Scroll Object Initialized */
var scroll = new Fx.Scroll('wrapper', {
offset:{'x':0, 'y':0},
transition: Fx.Transitions.Elastic.easeOut
}); // the scroll stage is set up here, and each movement will be 'Elastic'
// other tranistions could be linear, quadratic, ect.
/* Trigger to move the slide left */
//when the #moveleft link is clicked, this tells the scroll to move left
$('moveleft').addEvent('click', function(event) {
event = new Event(event).stop(); // don't go to the actual link described in the href
if(currentslide == 1) return; // can't go more left than the first
currentslide--; // currentslide is one less than before
pos += -(offset); // slide the stage left by the offset's size
/* lower the opactiy, slide, then raise back opacity */
fx.start({
'opacity': .3 // the opacity of the icons will become 30 %
}).chain(function(){
this.start.delay(800, this, { 'opacity': 1 }); // bring the icons back to 100% opacity
scroll.start(pos); // move the stage to the new position
});
});
$('moveright').addEvent('click', function(event) {
event = new Event(event).stop();
if(currentslide &gt;= slides) return;
currentslide++;
pos += offset;
fx.start({
'opacity': .3
}).chain(function(){
this.start.delay(800, this, { 'opacity': 1 });
scroll.start(pos);
});
});
scroll.toLeft(); // We'll initalize the stage to left most position</pre>
<div class="rightmargin"><img src="/wp-content/uploads/carousel/visual.png" alt="Javascript Visual of Events" /></div>
<p>The next part of the Javascript strictly deals with what happens when you move the cursor over an icon. We want to make the icon bigger. When the cursor leaves the icon, we need to readjust the icon to different size settings.</p>
<pre>$$('.icon').each(function(item){  // for each icon, apply the follow events
item.addEvent('mouseover', function(event) { // when the icon is moused over, enlarge it
var fx2 = item.effects({
duration: 200,
transition: Fx.Transitions.linear
}); // initialize the icon transition properties
fx2.start({
'width': 40,
'height':40,
'margin-top': '-2',
'margin-left': '-5'
});
});
item.addEvent('mouseleave', function(event) { // when the icon is left by the mouse, reset icon
var fx2 = item.effects({duration: 200, transition: Fx.Transitions.linear });
fx2.start({
'width': 32,
'height':32,
'margin-top': '0',
'margin-left': '0'
});
});
});</pre>
<p><strong>Conclusion</strong> Thats all that&#8217;s need to create a dock carousel. The icons in the demo are kindly provided by <a href="http://www.jonasraskdesign.com/">Jonas Rask</a> and <a href="http://tutorialdog.com/">Devin Ross</a>. I&#8217;ve implemented the dock in the <a href="http://tutorialdog.com/resources/">resources section of Tutorial Dog</a> were you can download icons that I&#8217;ve created.</p>
]]></content:encoded>
			<wfw:commentRss>http://tutorialdog.com/javascript-dock-carousel-using-mootools-part-2/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Javascript Dock Carousel Using Mootools (Part 1)</title>
		<link>http://tutorialdog.com/javascript-dock-carousel-using-mootools-part-1/</link>
		<comments>http://tutorialdog.com/javascript-dock-carousel-using-mootools-part-1/#comments</comments>
		<pubDate>Mon, 14 Jul 2008 12:00:16 +0000</pubDate>
		<dc:creator>Devin</dc:creator>
				<category><![CDATA[Javascript Tutorial]]></category>
		<category><![CDATA[Photoshop Tutorial]]></category>
		<category><![CDATA[carousel]]></category>
		<category><![CDATA[dock]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[mootools]]></category>
		<category><![CDATA[photoshop]]></category>

		<guid isPermaLink="false">http://tutorialdog.com/?p=290</guid>
		<description><![CDATA[This tutorial will take you through creating the initial mockup in Photoshop, and creating a usable carousel that imitates the Mac OS X Leapard dock. This tutorial we'll acquiant you well with creating a slick button, and using the shape tools. We want to deal with shape layers instead of pixel because of the non-destructive nature of shapes. Non-desctructive shapes means you can edit and scale without distortion.]]></description>
			<content:encoded><![CDATA[<div class="floatl"><!--adsense#sr--></div>
<p><a href="http://tutorialdog.com/javascript-dock-carousel-using-mootools-part-2/">Follow part 2 of this tutorial here.</a> This tutorial will take you through creating the initial mockup in Photoshop, and creating a usable carousel that imitates the Mac OS X Leapard dock. This tutorial we&#8217;ll acquiant you well with creating a slick button, and using the shape tools. We want to deal with shape layers instead of pixel because of the non-destructive nature of shapes. Non-desctructive shapes means you can edit and scale without distortion.</p>
<h3>Step 1</h3>
<p>Create a photoshop and create a new document 540px x 308px. Fill the background with #232323.</p>
<p>Take the Rounded Rectangle Tool, set it to a 5px radius and create an object that is 350px by 50px. Make the color of this shape layer #303030. Make sure you have the tool set to the &#8220;Shape Layers&#8221; option instead of the paths option. That way, you are creating non-destructive shapes so you can go back and edit &amp; reference them later without compromising distortion. Next, type out &#8220;CAROUSEL&#8221; (or whatever you like) at the top of the document with the color #080808. Find a good serif font like &#8220;Myriad Pro&#8221;. Apply the Inner Shadow below layer style to the text.</p>
<div class="imagef"><img src="/wp-content/uploads/carousel/dropshadow.gif" alt="image" width="550" /><br />
<img src="/wp-content/uploads/carousel/1.gif" alt="image" width="540" /></div>
<h3>Step 2: Buttons</h3>
<p>Next, we need to create buttons that will move the carousel from left to right. First, create a 20px circle shape with the color #232323 using the ellipse tool. Apply the following Bevel &amp; Emboss and Gradient Overlay layer styles.</p>
<div class="imagef"><img src="/wp-content/uploads/carousel/bevel.gif" alt="image" width="550" /><br />
<img src="/wp-content/uploads/carousel/gradientoverlay.gif" alt="image" width="550" /><br />
<img src="/wp-content/uploads/carousel/button1.gif" alt="image" width="129" height="129" /></div>
<p>Now create a new white layer for the reflection. Start by creating another circle shape, and use Direct Selection Tool to mend the shape into the shape you see below. Move the handles (the line that is asymptotic to the path) of each point to change the curvature of the path. Set this layer to blending mode Overlay, and an opacity of 82%.</p>
<div class="imagef"><img src="/wp-content/uploads/carousel/button2.gif" alt="image" width="184" height="184" /></div>
<p>Next we need arrows to specify the direction. Take the pencil tool set to a 1px brush, and create a arrow out of pixels ontop of the button. Apply the following Drop Shadow and Inner Shadow to give the look that the arrow is imbedded in the button.</p>
<div class="imagef"><img src="/wp-content/uploads/carousel/arrow1.gif" alt="image" width="550" /><br />
<img src="/wp-content/uploads/carousel/arrow2.gif" alt="image" width="550" /></div>
<p>Finally for this step, group these three layers in a group and duplicate the group. Then with the group selected in the layer palette, Edit &gt;&gt; Transform &gt;&gt; Flip Horizontal. Place the buttons on either side of the stage.</p>
<div class="imagef"><img src="/wp-content/uploads/carousel/buttons.gif" alt="image" width="540" height="308" /></div>
<p><!--adsense#bannerimg2--></p>
<h3>Step 3: Stage</h3>
<div class="right"><img src="/wp-content/uploads/carousel/stage2.gif" alt="image" width="241" height="49" /></div>
<p>Now we&#8217;ll recreate a the Leopard dock. Fist we need the Leopard wallpaper. Place the image inside the Photoshop document, and use the shape made in step one to mask of the wallpaper layer. To do this, select the shape, and right click and pick &#8220;Make Selection&#8221;. Now with the selection, make a mask on the wallpaper layer. Click the little link connecting the mask to the image, to disassociate the mask with the layer, so you can move the image around without moving the mask around with it. Place the wallpaper in the correct place.</p>
<div class="imagef"><img src="/wp-content/uploads/carousel/stage1.gif" alt="image" width="550" />
</div>
<p>The next step is to create the shelf, create a white rectangle shape, and use the Direct Selection Tool to select the corners, and transform the shape to give it the perspective of a shelf. Again, we want to use the path of the original stage layer. This time though copy that path and paste the path into the shelf layer. With both paths selected, click the &#8220;Intersect Shapes area&#8221; button. Set the opacity of the stage to 51%.</p>
<div class="imagef"><img src="/wp-content/uploads/carousel/stage3.gif" alt="image" width="556" height="379" /></div>
<p>Finally, we need to create a swoosh across the stage. Again, we want to create a shape, this time, use the pen tool to create the shape over the stage. Set the opacity of this layer to 14%.</p>
<div class="imagef"><img src="/wp-content/uploads/carousel/stage4.gif" alt="image" width="506" height="273" /></div>
<h3>Step 4: Icons</h3>
<p>This step is more for mocking up the final product which we&#8217;ll be finished in Part 2, but drag 32px icons onto the dock. Space them appropriately.</p>
<div class="imagef"><img src="/wp-content/uploads/carousel/icons.gif" alt="image" width="540" height="308" /></div>
<p>When creating the icons for Part 2, we need to make sure that the icons are transparent and that the size of the icons are 40px or greater. To get best looking transparent icon, make sure you use the PNG-24 setting in the Save to Web palette. This will create the best looking transparent icon. If you export with GIF, you tend to get more jagged edges that look bad.</p>
<h3>Step 5: Slicing and Exporting for the Web</h3>
<p>Next we need to slice up the document to get it ready for the web. There should only be 4 slices in this document: the two buttons, the stage and the text. You can name each slice by taking Slice Selection Tool and double clicking on a slice. A panel will pop up with input to rename the slice, that way when you export, it will automatically name the images.</p>
<div class="imagef"><img src="/wp-content/uploads/carousel/slice1.gif" alt="image" width="541" height="309" /></div>
<p>Now that you&#8217;ve sliced the image, go to File &gt;&gt; Save to Web&#8230; You can change the export setting for each slice, but for this particular document leave each slice as a gif. For more info on exporting, check out this article that walks through <a href="http://tutorialdog.com/a-guide-to-exporting-to-the-web-in-photoshop/">exporting for the web in Photoshop</a>. When you go to save, make sure you change the option &#8220;Slice:&#8221; from &#8220;All Slices&#8221; to &#8220;All User Slices&#8221; so you don&#8217;t have unnecessary slices.</p>
]]></content:encoded>
			<wfw:commentRss>http://tutorialdog.com/javascript-dock-carousel-using-mootools-part-1/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Presidential Pattern in Photoshop &#8211; McCain vs Obama</title>
		<link>http://tutorialdog.com/presidential-pattern-in-photoshop-mccain-vs-obama/</link>
		<comments>http://tutorialdog.com/presidential-pattern-in-photoshop-mccain-vs-obama/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 12:00:18 +0000</pubDate>
		<dc:creator>Devin</dc:creator>
				<category><![CDATA[Photoshop Tutorial]]></category>
		<category><![CDATA[Barack Obama]]></category>
		<category><![CDATA[illustrator]]></category>
		<category><![CDATA[John McCain]]></category>
		<category><![CDATA[paper]]></category>
		<category><![CDATA[pattern]]></category>
		<category><![CDATA[pattern making]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[vector]]></category>

		<guid isPermaLink="false">http://tutorialdog.com/?p=277</guid>
		<description><![CDATA[In this Photoshop tutorial, we'll dive into a pattern inspired by the artwork in the <a href="http://www.makemeamerica.com/"> Stephen Colbert book</a> "<em>I Am America (And So Can You)</em>" (the book has some very good illustrations). The tutorial will cover creating vector artwork from a photograph, taking the vector artwork and making a repeatable pattern and then creating a groovy wallpaper that utilizes the pattern. For the pattern, we'll pit Barack Obama versus John McCain. As one reader pointed out in the <a href="http://tutorialdog.com/barack-obamas-coldplay-ipod-itunes-commercial-in-photoshop/">last tutorial</a> which featured only Barack Obama, we'll feature both canidates in the upcoming Presidential election.]]></description>
			<content:encoded><![CDATA[<div class="floatl"><!--adsense#sr--></div>
<p>In this Photoshop tutorial, we&#8217;ll dive into a pattern inspired by the artwork in the <a href="http://www.makemeamerica.com/"> Stephen Colbert book</a> &#8220;<em>I Am America (And So Can You)</em>&#8221; (the book has some very good illustrations). The tutorial will cover creating vector artwork from a photograph, taking the vector artwork and making a repeatable pattern and then creating a groovy wallpaper that utilizes the pattern. For the pattern, we&#8217;ll pit Barack Obama versus John McCain. As one reader pointed out in the <a href="http://tutorialdog.com/barack-obamas-coldplay-ipod-itunes-commercial-in-photoshop/">last tutorial</a> which featured only Barack Obama, we&#8217;ll feature both canidates in the upcoming Presidential election.<br />
<a class="files2" href="http://tutorialdog.com/wp-content/uploads/2008/06/pattern_tutorial.zip"><strong>Download PSD Files</strong></a></p>
<h3>Step 1: Gather resources</h3>
<p>First we need to acquire two profile photos of <a href="http://flickr.com/photos/chico_almendra/2272301841/sizes/l/">Barack Obama</a> and <a href="http://flickr.com/photos/carianoff/2188722036/">John McCain</a>.  These two photos will help create vector illustrations of the candidates. For creating a wallpaper texture, we need a <a href="http://www.sxc.hu/photo/1020905">good paper texture</a>.</p>
<h3>Step 2: Setting up the photos to vectorize</h3>
<p>We need to create simple two tone vectors for Obama and McCain and to help us in creating the vector we&#8217;ll use the Stamp filter (<em>Filters &gt;&gt; Sketch &gt;&gt; Stamp</em>). I removed the background quickly using the magic wand tool, and then applied the stamp filter. The purpose of using the stamp tool is to provide a rough estimate of where the paths need to follow along.</p>
<div class="imagef"><a href="http://tutorialdog.com/wp-content/uploads/2008/06/stampfilter.gif"><img class="alignnone size-medium wp-image-278" title="stampfilter" src="http://tutorialdog.com/wp-content/uploads/2008/06/stampfilter-550x332.gif" alt="Stamp Filter" width="550" height="332" /></a></div>
<h3>Step 3: Create vector paths</h3>
<div class="rightmargin"><a href="http://www.colourlovers.com/palette/105188/Democratic_Debates" target="_blank"><img style="width: 240px; height: 120px; border: 0 none;" src="http://www.colourlovers.com/images/badges/p/105/105188_Democratic_Debates.png" alt="Democratic Debates" /></a></div>
<p>To actually create the paths, I used Adobe Illustrator instead of Photoshop. (I find Illustrator better for hardcore use of the pen tool, but if you are more comfortable with Photoshop, it&#8217;ll do the job too.) I took both photos as well as both photos with the stamp filter applied, brought it over to Illustrator, and created pen paths using the photos as a guide. I provided some detail for the jacket and tie, but for the most part, you want make the area below the neck a long rectangle. Since the Obama&#8217;s photo had him wearing a suit and tie and I want some conformity, I copied the vector and added McCain&#8217;s head to the suit and tie. I used the dark colors from the palette below I found on Colour Lovers and made the Obama vectore blue: #2140A2 &amp; McCain red: #BB1A1A.</p>
<p><strong>Using Illustrator:</strong> If you are going to use Illustrator for creating the vectors, copy and paste the four images (photos and stamped photos) from Photoshop into an Illustrator document. I made sure that each photo was on it&#8217;s own layer, and locked each of these layers. I created the Obama and McCain vector paths on their own separate layers as well. It&#8217;s a good idea to place the photos on their own locked layers because you won&#8217;t be able to edit the images in Illustrator, and you will be able to quickly turn off a photo layer at will. I created the silhouettes of the characters using a 2 pt stroke path, then create shapes filled with the correct color to show details for the candidates hair, eyes, mouth and chin.</p>
<div class="imagef"><a href="http://tutorialdog.com/wp-content/uploads/2008/06/vector1.gif"><img class="alignnone size-medium wp-image-279" title="vector1" src="http://tutorialdog.com/wp-content/uploads/2008/06/vector1-550x518.gif" alt="Vector Obama McCain" width="550" height="518" /></a><br />
<a href="http://tutorialdog.com/wp-content/uploads/2008/06/vector2.gif"><img class="alignnone size-medium wp-image-280" title="vector2" src="http://tutorialdog.com/wp-content/uploads/2008/06/vector2-550x509.gif" alt="Vector McCain Obama" width="550" height="509" /></a></div>
<h3>Step 4: Creating the Pattern</h3>
<p>Now we want to bring the vector paths back into Photoshop to create the pattern. I created a large document (3500 square pixel to be exact) so that there was space to create the pattern and also have high resolution vectors. Copy and paste Obama and McCain to their own separate layers as &#8220;pixels&#8221; (making sure they were of equal size proportions). I applied an outside stroke using Layer Styles to each candidate so that the pattern could smoothly transition from one vector to the other. Started to create the pattern by duplicating the layers and placing each vector layer above the next. Once you have a few repeats in the column pattern, duplicate the column, and make another row so that they are next to each other, but offset the pattern so that Obama and McCain are directly looking at each other.</p>
<div class="imagef"><a href="http://tutorialdog.com/wp-content/uploads/2008/06/pattern1.gif"><img class="alignnone size-medium wp-image-281" title="pattern1" src="http://tutorialdog.com/wp-content/uploads/2008/06/pattern1-550x399.gif" alt="Stroke Layer Style" width="550" height="399" /></a></div>
<p>If you&#8217;ve ever made a complicated and precise pattern, you&#8217;ll know that to make the pattern repeat correctly, you&#8217;ll need to pick a spot in the pattern, and then find that exact same spot in the pattern again. What helped me was to use the guides to dissect Obama &amp; McCain at their noses. (To make a guide by clicking on the document ruler and drag out onto the document) To start the pattern on the left, I aligned a guide snug against the beginning of McCain&#8217;s nose. I could easily place the right end guide by finding the beginning of McCain&#8217;s nose horizontally to where it touched the other guide. For the top and bottom guides, I again used their noses to find the area of repeat.</p>
<p>Using the guides helped properly align the pattern as well. When I created the pattern initially, some of the face offs (when the two where looking directly at each other) where slightly off because I began manually repeating the pattern. Using the guides help reveal and solve the problem. Once you properly align the pattern and created guides, take the rectangular marquee selection tool, and create a selection along the guides. To make the pattern, go to <em>Edit &gt;&gt; Define Pattern&#8230;</em></p>
<p>To apply the pattern to a layer, take the paint bucket tool, and set the fill to &#8216;Pattern&#8217; and pick the pattern just made.</p>
<div class="imagef"><a href="http://tutorialdog.com/wp-content/uploads/2008/06/pattern2.jpg"><img class="alignnone size-medium wp-image-283" title="pattern2" src="http://tutorialdog.com/wp-content/uploads/2008/06/pattern2-506x600.jpg" alt="Define Pattern" width="506" height="600" /></a><a href="http://tutorialdog.com/wp-content/uploads/2008/06/pattern3.jpg"><img class="alignnone size-medium wp-image-284" title="pattern3" src="http://tutorialdog.com/wp-content/uploads/2008/06/pattern3.jpg" alt="Paint Bucket Pattern" width="439" height="260" /></a></div>
<h3>Step Five: Creating the Wallpaper</h3>
<p>I created a new document at 2560 px by 1600 px dimensions. Since I wanted to tilt and reduce the pattern size, I created another 12000 x 12000 px document (yes those dimensions are correct) and filled the document with the pattern. Once Photoshop filled the document with the pattern (it took a while on my machine) I brought the layer over to the wallpaper sized document and rotated and reduce the layer.</p>
<div class="imagef"><a href="http://tutorialdog.com/wp-content/uploads/2008/06/wallpaper1.gif"><img class="alignnone size-medium wp-image-285" title="wallpaper1" src="http://tutorialdog.com/wp-content/uploads/2008/06/wallpaper1-550x343.gif" alt="Wallpaper 1" width="550" height="343" /></a></div>
<p>I took a <a href="http://www.sxc.hu/photo/1020906">photo of aged paper</a> and put it on top of the pattern layer. I duplicated the paper layer and set one layer to Blending mode Lighten at 9% opacity and Multiply at 46% opacity.</p>
<div class="imagef"><a href="http://tutorialdog.com/wp-content/uploads/2008/06/wallpaper2.jpg"><img class="alignnone size-medium wp-image-286" title="wallpaper2" src="http://tutorialdog.com/wp-content/uploads/2008/06/wallpaper2-550x343.jpg" alt="Wallpaper with texture" width="550" height="343" /></a></div>
<p>I then created a white layer above the pattern set to Soft Light blending mode at 28% opacity. What this does is make the colors in the pattern look more faded and worn. Then I created a new layer to darken the outer edges of the wallpaper. To give the effect of light shining in the middle, I added a radial gradient set to Overlay at 10%.</p>
<div class="imagef"><a href="http://tutorialdog.com/wp-content/uploads/2008/06/wallpaper3.jpg"><img class="alignnone size-medium wp-image-287" title="wallpaper3" src="http://tutorialdog.com/wp-content/uploads/2008/06/wallpaper3-550x369.jpg" alt="Wallpaper and Layers" width="550" height="369" /></a></div>
<h3>Final Result</h3>
<div class="imagef"><a href="http://tutorialdog.com/wp-content/uploads/2008/06/wallpaper.jpg"><img class="alignnone size-medium wp-image-288" title="wallpaper" src="http://tutorialdog.com/wp-content/uploads/2008/06/wallpaper.jpg" alt="Wallpaper Final" width="820" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://tutorialdog.com/presidential-pattern-in-photoshop-mccain-vs-obama/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Barack Obama&#8217;s Coldplay iPod + iTunes Commercial in Photoshop</title>
		<link>http://tutorialdog.com/barack-obamas-coldplay-ipod-itunes-commercial-in-photoshop/</link>
		<comments>http://tutorialdog.com/barack-obamas-coldplay-ipod-itunes-commercial-in-photoshop/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 12:00:33 +0000</pubDate>
		<dc:creator>Devin</dc:creator>
				<category><![CDATA[Photoshop Tutorial]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[Barack Obama]]></category>
		<category><![CDATA[coldplay]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[effect]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[lighting]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[silhouet]]></category>

		<guid isPermaLink="false">http://tutorialdog.com/?p=249</guid>
		<description><![CDATA[This Photoshop tutorial will guide you through creating an effect in the vein of the most recent <a href="http://www.apple.com/itunes/ads/sonic/">Coldplay iTunes commercial</a>. The Coldplay commercial uses colorful backdrops, with various textures, smoke and lighting effects. For this tutorial, we’ll take a photo of Barack Obama, mask it, create a silhouet and create the colorful background. This tutorial includes a download to the PSD file so you can see how the layers are set up.]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" title="obamapreview" src="http://tutorialdog.com/wp-content/uploads/2008/06/obamapreview.png" alt="Obama Preview" width="84" height="84" align="right" /> This Photoshop tutorial will guide you through creating an effect in the vein of the most recent <a href="http://www.apple.com/itunes/ads/sonic/">Coldplay iTunes commercial</a>. The Coldplay commercial uses colorful backdrops, with various textures, smoke and lighting effects. For this tutorial, we’ll take a photo of Barack Obama, mask it, create a silhouet and create the colorful background. This tutorial includes a download to the PSD file so you can see how the layers are set up.<br />
<strong><a class="files2" href="http://tutorialdog.com/wp-content/uploads/2008/06/iPodobama.psd">Download the Final PSD</a></strong></p>
<div class="floatl"><!--adsense#sr--></div>
<p><strong>Step 1: Obama</strong> I start out with a 1200 px x 800p x document with a black background. For the tutorial, I&#8217;ll use a <a title="Barack Obama Photo" href="http://flickr.com/photos/seiu/374553988/sizes/l/#cc_license">photo of Barack Obama</a> on Flickr. First, we&#8217;ll need to take the photo and strip Barack of the background. To do this, create a mask for the photo layer, and blacken out the mask layer with a hard brush around Obama. Once you&#8217;ve completely masked out Obama, bring the layer over the 1200 px  by 800px document. Desaturate the layer by going to Image &gt;&gt; Adjustments &gt;&gt; Desaturate. Next you need to take a large soft black brush with a low opacity and darken his appearence. It&#8217;s up to you to decide how dark you want certain areas, but I wanted to make his hands and shirt appear lighter, so I made sure not to darken these areas too much. You&#8217;ll want to keep one side of Obama&#8217;s face brighter than the rest so that it appears light is hitting that area.</p>
<div class="imagef"><a href="http://tutorialdog.com/wp-content/uploads/2008/06/person.jpg"><img class="alignnone size-medium wp-image-261" title="person" src="http://tutorialdog.com/wp-content/uploads/2008/06/person.jpg" alt="Barack Obama" width="810" /></a></div>
<p><strong>Step 2: Color Background</strong> The next step involves creating the lighting behind the person. While you may be tempted to use radial gradients, I found using a soft low opacity brush did the best job. You want to keep the hardness of the brush to 0% and the opacity between 5% and 15%. Don&#8217;t be afraid either to keep all colors on one layer. The colors were the basic CMYK colors of Cyan (#019CFA) Magenta (#EB00C0) and Yellow (#F5DC08).</p>
<div class="imagef"><a href="http://tutorialdog.com/wp-content/uploads/2008/06/colors.jpg"><img class="alignnone size-medium wp-image-253" title="colors" src="http://tutorialdog.com/wp-content/uploads/2008/06/colors-550x366.jpg" alt="Colorful Background" width="550" height="366" /></a></div>
<p>Now that there is vibrant colors behind Obama, create a new layer above the colors layer. Take a white low opacity brush again, and lighten up the most vibrant part of the previous layer. This helps give a more realistic feel to the lights.</p>
<div class="imagef"><a href="http://tutorialdog.com/wp-content/uploads/2008/06/colors21.jpg"><img class="alignnone size-medium wp-image-268" title="colors21" src="http://tutorialdog.com/wp-content/uploads/2008/06/colors21-550x366.jpg" alt="White Colors" width="550" height="366" /></a></div>
<p>Take a white brush again and on a new layer paint softly the area above Obama&#8217;s shoulders. Then set the <a href="/glossary/#blendingmode">blending mode</a> of this layer “Overlay” and duplicate the layer. What this does is create the appearance of a burst of light directly behind Obama. As a final measurement to liven up the background, create a new layer filled with white, and set the blending mode to Overlay. Set the opacity of layer to 45%.</p>
<div class="imagef"><a href="http://tutorialdog.com/wp-content/uploads/2008/06/colors2.jpg"><img class="alignnone size-medium wp-image-254" title="colors2" src="http://tutorialdog.com/wp-content/uploads/2008/06/colors2-550x366.jpg" alt="Whiten Background" width="550" height="366" /></a><br />
<a href="http://tutorialdog.com/wp-content/uploads/2008/06/colors3.jpg"><img class="alignnone size-medium wp-image-255" title="colors3" src="http://tutorialdog.com/wp-content/uploads/2008/06/colors3-550x366.jpg" alt="Burst of Light" width="550" height="366" /></a></div>
<p><strong>Step 3: Background Texture</strong> For this next step, we&#8217;ll require the two free Watercolor Textures from <a href="http://www.gomedia.us/arsenal/affiliates/idevaffiliate.php?id=319">GoMedia&#8217;s Arsenal</a> website. You can find the watercolors under &#8220;Freebies&#8221;. Desaturate the red and yellow watercolor ( Image &gt;&gt; Adjustments &gt;&gt; Desaturate ) and invert ( Image &gt;&gt; Adjustment &gt;&gt; Invert ). Set the blending mode of this layer to &#8220;Screen&#8221; so only the light shows through. Reduce the size and place the texture at the bottom left of Obama. For the blue texture, desaturate the layer, and set the blending mode to &#8220;Multiply&#8221;. Rotate and place this layer at near the top portion of Obama.</p>
<div class="imagef"><a href="http://tutorialdog.com/wp-content/uploads/2008/06/texture1.jpg"><img class="alignnone size-medium wp-image-256" title="texture1" src="http://tutorialdog.com/wp-content/uploads/2008/06/texture1-550x366.jpg" alt="Texture" width="550" height="366" /></a></div>
<p><strong>Step 4: Background Dots</strong> First create a new layer above everything but the photo of the person. This step will deal with using the brush tool and it&#8217;s settings. Set the brush to a diameter of 9 and a hardness of 100%. In the Brushes palette, set the Size, Scattering and Opacity Jitters up to 100%. Also set the spacing to 1000%. This will change the settings of the brush to create non-uniform circles randomly around the document. Once you&#8217;ve create a decent amount of circles around the lights, set the layer to <a href="/glossary/#blendingmode">blending mode</a> &#8220;Overlay&#8221; and duplicate the layer.</p>
<div class="imgfull"><a href="/wp-content/uploads/2008/06/dots1.gif"><img class="alignnone size-medium wp-image-257" title="dots1" src="/wp-content/uploads/2008/06/dots1.gif" alt="Brush Settings 1" width="260" /></a><a href="http://tutorialdog.com/wp-content/uploads/2008/06/dots2.gif"><img class="alignnone size-medium wp-image-258" title="dots2" src="http://tutorialdog.com/wp-content/uploads/2008/06/dots2.gif" alt="Brush Settings 2" width="260" /></a><a href="http://tutorialdog.com/wp-content/uploads/2008/06/dots3.gif"><img class="alignnone size-medium wp-image-259" title="dots3" src="http://tutorialdog.com/wp-content/uploads/2008/06/dots3.gif" alt="Brush Settings 3" width="260" /></a><a href="http://tutorialdog.com/wp-content/uploads/2008/06/dots.jpg"><img class="alignnone size-medium wp-image-260" title="dots" src="http://tutorialdog.com/wp-content/uploads/2008/06/dots-550x366.jpg" alt="Dots" width="550" height="366" /></a></div>
<h3>Step 5: Smoke</h3>
<p>On a new layer, take a small semi-soft white brush and make a scribbled line. Apply the Wave filter (Filters &gt;&gt; Distort &gt;&gt; Wave); the settings below worked for me. The take the Smudge Tool at 60% Strength and begin to smudge the line in an upwards direction. You can move around a whole section, but a key to creating a more flame look, only smudge the upper half of and particular section the scribble.</p>
<div class="imagef"><a href="http://tutorialdog.com/wp-content/uploads/2008/06/smoke1.gif"><img class="alignnone size-medium wp-image-262" title="smoke1" src="http://tutorialdog.com/wp-content/uploads/2008/06/smoke1.gif" alt="Scribble" width="382" height="247" /></a><a href="http://tutorialdog.com/wp-content/uploads/2008/06/smoke2.gif"><img class="alignnone size-medium wp-image-263" title="smoke2" src="http://tutorialdog.com/wp-content/uploads/2008/06/smoke2.gif" alt="Motion Filter" width="497" height="403" /></a><a href="http://tutorialdog.com/wp-content/uploads/2008/06/smoke3.gif"><img class="alignnone size-medium wp-image-264" title="smoke3" src="http://tutorialdog.com/wp-content/uploads/2008/06/smoke3.gif" alt="Motion Filter Effect" width="397" height="243" /></a></div>
<p>I used the eraser tool to remove and darken some parts of the smoke. The next step is to give some color to the smoke via Hue / Saturation menu. Choose the colorize option, and move the saturation and Hue to the right, and the lightness to the left.</p>
<div class="imagef"><a href="http://tutorialdog.com/wp-content/uploads/2008/06/smoke4.jpg"><img class="alignnone size-medium wp-image-265" title="smoke4" src="http://tutorialdog.com/wp-content/uploads/2008/06/smoke4.jpg" alt="Hue Saturation" width="461" height="285" /></a></div>
<p>Another Way to do this by using stock photography of smoke. I took a stock photograph of smoke against a black background, and like the texture behind the Obama, you can set the blending mode to screen to get rid of the black background.  I used a black brush to darken the smoke at the edges, and resized and changed the coloring.</p>
<div class="imagef"><a href="http://tutorialdog.com/wp-content/uploads/2008/06/213819_9353.jpg"><img class="alignnone size-medium wp-image-272" title="213819_9353" src="http://tutorialdog.com/wp-content/uploads/2008/06/213819_9353-550x429.jpg" alt="Original Smoke" width="550" height="429" /></a><a href="http://tutorialdog.com/wp-content/uploads/2008/06/smoke5.jpg"><img class="alignnone size-medium wp-image-273" title="smoke5" src="http://tutorialdog.com/wp-content/uploads/2008/06/smoke5.jpg" alt="Smoke Photo 2" width="550" height="430" /></a></div>
<p><strong>Conclusion</strong> That&#8217;s all folks. If you give this tutorial try yourself, please feel free to leave a comment with a link to the image below. You can find the little <a href="http://www.barackobama.com/downloads/">Obama logo on his own download webpage</a>. I&#8217;m including the PSD for this tutorial as well.</p>
<div class="imagef"><a href="http://tutorialdog.com/wp-content/uploads/2008/06/final21.jpg"><img class="alignnone size-medium wp-image-275" title="final21" src="http://tutorialdog.com/wp-content/uploads/2008/06/final21.jpg" alt="Final Result" width="820" /></a></div>
<p><!--adsense#bannerimg2--></p>
]]></content:encoded>
			<wfw:commentRss>http://tutorialdog.com/barack-obamas-coldplay-ipod-itunes-commercial-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Draw in Photoshop Using A Tablet</title>
		<link>http://tutorialdog.com/draw-in-photoshop-using-a-tablet/</link>
		<comments>http://tutorialdog.com/draw-in-photoshop-using-a-tablet/#comments</comments>
		<pubDate>Wed, 21 May 2008 12:00:06 +0000</pubDate>
		<dc:creator>Devin</dc:creator>
				<category><![CDATA[Photoshop Tutorial]]></category>
		<category><![CDATA[brush]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[drawing]]></category>
		<category><![CDATA[painting]]></category>
		<category><![CDATA[shading]]></category>
		<category><![CDATA[tablet]]></category>

		<guid isPermaLink="false">http://tutorialdog.com/?p=186</guid>
		<description><![CDATA[A graphic tablet allows you to take Adobe Photoshop to a new level. You can take advantage of the brush tool and it's powerful ability to imitate different traditional mediums of art and human input. In this Photoshop tutorial, you'll learn how to set up Photoshop so that it can use the tablets input, create an outline from a photo, color and shade all using the tablet. The tutorial includes a time lapse of the process I took to creating the final product. ]]></description>
			<content:encoded><![CDATA[<p>In this Photoshop tutorial, you&#8217;ll learn how to set up Photoshop so that it can use the tablets input, create an outline from a photo, color and shade all using the tablet. The tutorial includes a time lapse of the process I took to creating the final product.<br />
<a href="http://tutorialdog.com/wp-content/uploads/2008/05/tablet.png"><img class="alignleft" title="tablet" src="http://tutorialdog.com/wp-content/uploads/2008/05/tablet-300x270.png" alt="Wacom Bamboo" width="150" align="left" /></a>A graphic tablet allows you to take Adobe Photoshop to a new level. You can take advantage of the brush tool and it&#8217;s powerful ability to imitate different traditional mediums of art and human input. For this tutorial, I&#8217;ll be using a <a href="http://www.wacom.com/bambootablet/index.cfm">Wacom Bamboo tablet</a>. It&#8217;s Wacom&#8217;s (Wacom is the industry standard supplier) most inexpensive tablet ($79), but still does a good job. Tablets can range from the Bamboo which has only pressure sensitivity, to monitor tablets with pressure &amp; tilt sensitivity. The monitor tablets are relatively expensive investments though. If you&#8217;ve never used a tablet before, it will take some time getting acquainted. One thing that would throw me off was that when I draw, I like to rotate the paper to draw straighter, but that doesn&#8217;t fly on a tablet because the cursor becomes disoriented on a non-monitor tablet.</p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="wmode" value="transparent" /><param name="src" value="http://www.youtube.com/v/i-ExmqcrBHU&amp;hl=en" /><embed type="application/x-shockwave-flash" width="425" height="355" src="http://www.youtube.com/v/i-ExmqcrBHU&amp;hl=en" wmode="transparent"></embed></object><br />
<!--adsense#bannerimg--><br />
<strong>Start Large, then downscale.</strong> The most important thing to know BEFORE you start, is to start BIG. Working on a large document will allow you to zoom better but more importantly downscale all the minor imperfections you would see at a larger size. Start at least twice (four times is optimal) the size of what you expect to be the final image size.</p>
<h3>Step 1: Outline</h3>
<p>For this tutorial, I&#8217;ll draw Kobe Bryant from an image. One great thing is you can draw an outline right on top of the image. Create your document (remember 2x or 4x it&#8217;s intended size) and import any reference images making sure you resize the image to take up the appropriate space in the photoshop document.</p>
<div class="imagef"><a href="http://tutorialdog.com/wp-content/uploads/2008/05/16660.jpg"><img class="alignnone size-full wp-image-214" title="16660" src="http://tutorialdog.com/wp-content/uploads/2008/05/16660.jpg" alt="Kobe Photo" width="500" height="375" /></a></div>
<p><strong>Setting Up the Brush with Tablet</strong></p>
<p><strong><span style="font-weight: normal;">The first thing you&#8217;ll want to do is create a new layer for the outline. To set up the brush controls, take a hard round brush (the size depends on the size of the document). To enable the tablets input, we need to access the Brush palette ( Menu Bar &gt;&gt; Window &gt;&gt; Brushes ). First set the spacing to 1% under the &#8220;Brush Tip Shape&#8221; option. Next enable the &#8220;Shape Dynamics&#8221; and set the Size Jitter control to Pen Pressure &amp; the Roundness Jitter control to Pen Tilt. Since my tablet doesn&#8217;t have tilt support, you see a caution sign next to the tilt control. The tilt isn&#8217;t necessary, and you may even want to remove it even if you have the ability.</span></strong></p>
<div class="imagef"><a href="http://tutorialdog.com/wp-content/uploads/2008/05/spacing.gif"><img class="alignnone size-medium wp-image-205" title="spacing" src="http://tutorialdog.com/wp-content/uploads/2008/05/spacing-233x300.gif" alt="Brush Spacing" width="233" height="300" /></a> <a href="http://tutorialdog.com/wp-content/uploads/2008/05/shapedynamics.gif"><img class="alignnone size-medium wp-image-206" title="shapedynamics" src="http://tutorialdog.com/wp-content/uploads/2008/05/shapedynamics-233x300.gif" alt="Brush Shape Dynamics" width="233" /></a><br />
<small>The brush settings</small></div>
<p><strong>Tracing Tips</strong>: Now that you&#8217;ve set up the brush, you can trace out the photo. If you pay close attention to the video, during the tracing stage, I traced the outline two different ways. The first way which you see in the beginning, I made the outline of thick solid lines. Later on, I switched up and made the brush size smaller and created more swift short strokes to get a smoother and accurate line. I then took the eraser and cleaned up the up the line. The reason I switch to a more sketching type approach was because the lines I was creating with on solid line was not coming out as I intended. (Thats why you see me undo a lot in the beginning.) Lock this layer so that you don&#8217;t alter it in later steps.</p>
<div class="imagef"><a href="http://tutorialdog.com/wp-content/uploads/2008/05/outline.gif"><img class="alignnone size-medium wp-image-208" title="outline" src="http://tutorialdog.com/wp-content/uploads/2008/05/outline.gif" alt="Outline" width="494" /></a></div>
<p><!--adsense#bannerimg3--></p>
<h3>Step 2: Coloring</h3>
<p>Once you&#8217;ve completely traced the image, create a new layer for each color you intend to use. Put these layers below the outline layer, and fill in the drawing. Naming each layer is a good idea so that your organized. I use only a few colors because I&#8217;ll add depth in the next step. Keep within the lines!</p>
<div class="imagef"><a href="http://tutorialdog.com/wp-content/uploads/2008/05/colors.jpg"><img class="alignnone size-medium wp-image-200" title="colors" src="http://tutorialdog.com/wp-content/uploads/2008/05/colors.jpg" alt="" width="500" /></a><br />
<small>Color the outline on different layers.</small></div>
<h3>Step 3: Shadow &amp; Highlight</h3>
<p>Again, create a new layer above both the outline and the color layers. For this step, we&#8217;ll be dealing with soft brushes with low opacity, because you want to avoid sharp lines in the shadow. Generally, when I add depth the opacity of the brush is 3-5% and no greater than 12%, . To add a shadow, use a black brush and a white brush for highlights. The photo was a great reference to know where the shadows and highlights where. Keep in mind that you can always undo, and just mess around and see what you come up with. The time drawing I made in the time lapse took 5 and a half hours to create start to finish.</p>
<div class="imagef"><a href="http://tutorialdog.com/wp-content/uploads/2008/05/highlightshadow.gif"><img class="alignnone size-medium wp-image-203" title="highlightshadow" src="http://tutorialdog.com/wp-content/uploads/2008/05/highlightshadow.gif" alt="Highlights and shadows" width="500" /></a><br />
<small>The shadows and highlights.</small></div>
<h4>Adding depth to the face</h4>
<p>The face of the subject is trickiest part of this tutorial. If you look at a face, there are a lot of bumps &amp; curves and thus a lot of subtle places to shade. For the eyes, there is a shadow cast under the eyebrows, and light on the top of the eyelid, then shadow on the lower eyelid followed by light cast on the cheek. There is light shining on the forehead, the nose, the top of the lip under the nose and the top of the chin.</p>
<div class="imagef"><a href="http://tutorialdog.com/wp-content/uploads/2008/05/face.jpg"><img class="alignnone size-medium wp-image-204" title="face" src="http://tutorialdog.com/wp-content/uploads/2008/05/face.jpg" alt="Places where to shadow &amp; highlight" width="230" height="230" /></a><br />
<small>Places to shadow and highlight on the face</small></div>
<h3>Conclusion</h3>
<p>There you have it. All you have to do now is tie up and lose ends and downscale your drawing. When you downscale, you&#8217;ll suddenly know why I told you to start big.</p>
<div class="imagef"><a href="http://tutorialdog.com/wp-content/uploads/2008/05/kobewallpaper.jpg"><img class="alignnone size-medium wp-image-207" title="kobewallpaper" src="http://tutorialdog.com/wp-content/uploads/2008/05/kobewallpaper.jpg" alt="Kobe Bryant Drawing" width="500" /></a><a href="http://tutorialdog.com/wp-content/uploads/2008/05/hardawaywallpaper.jpg"><img title="hardawaywallpaper" src="http://tutorialdog.com/wp-content/uploads/2008/05/hardawaywallpaper.jpg" alt="Penny Hardaway Wallpaper" width="500" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://tutorialdog.com/draw-in-photoshop-using-a-tablet/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>Re-Coloring Jason Kidd&#8217;s Shoe</title>
		<link>http://tutorialdog.com/re-coloring-jason-kidds-shoe/</link>
		<comments>http://tutorialdog.com/re-coloring-jason-kidds-shoe/#comments</comments>
		<pubDate>Sat, 08 Mar 2008 03:47:29 +0000</pubDate>
		<dc:creator>Devin</dc:creator>
				<category><![CDATA[Photoshop Tutorial]]></category>
		<category><![CDATA[blending mode]]></category>
		<category><![CDATA[brush]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[layer]]></category>
		<category><![CDATA[pen tool]]></category>

		<guid isPermaLink="false">http://tutorialdog.com/re-coloring-jason-kidds-shoe/</guid>
		<description><![CDATA[If you follow the NBA, you'll know Jason Kidd was traded from the Nets to the Dallas Mavericks. (While I like Jason Kidd and he is a great player, giving up Devin Harris was stupid on Mark Cuban's part). If you're like me and want the wallpaper of his shoe to match his current team colors instead of his old team colors, then you'll have to turn to Adobe Photoshop. This tutorial will show you the <em>best</em> way to change the colors of the shoe easily and quickly.]]></description>
			<content:encoded><![CDATA[<p class="floatl"><!--adsense#mr--></p>
<p>If you follow the NBA, you&#8217;ll know Jason Kidd was traded from the Nets to the Dallas Mavericks. (While I like Jason Kidd and he is a great player, giving up Devin Harris was stupid on Mark Cuban&#8217;s part). If you&#8217;re like me and want the wallpaper of his shoe to match his current team colors instead of his old team colors, then you&#8217;ll have to turn to Adobe Photoshop. This tutorial will show you the <em>best</em> way to change the colors of the shoe easily and quickly.</p>
<p>You may already know since Photoshop CS 2, there is the color replacement brush, but the tool isn&#8217;t always the most effective tool. The color replacement tool also applies it modifications directly on the photo layer so is a &#8220;destructive&#8221; process. If you&#8217;ve played around with the color replacement tool, you&#8217;ll know that the process of using layers (as shown in this Photoshop tutorial) is basically the same process.</p>
<h3>Get the Resources</h3>
<p>Grab a wallpaper from the <a href="http://www.nike.com/nikebasketball/">Nike Basketball website</a> or the <a href="http://inside.nikebasketball.com/news/wp-content/themes/inside_bb/images/wallpaper/226_nikebasketball_zoombb_jasonkidd.jpg">Jason Kidd wallpaper</a>. We&#8217;ll also need the Dallas Maverick Team colors. For the main color, we&#8217;ll use the light blue #009CFF and accent it with the dark blue #010C22.</p>
<p class="imagef"><img src="http://inside.nikebasketball.com/news/wp-content/themes/inside_bb/images/wallpaper/226_nikebasketball_zoombb_jasonkidd.jpg" alt="" width="480" /><br />
<small>The orignal shoe wallpaper done in Nets team colors.</small></p>
<p class="imagef"><img src="http://tutorialdog.com/wp-content/uploads/2008/03/dallas-mavericks-2006-nba-finals-photograph-c12233334.jpeg" alt="Dallas Mavericks Team Colors" /><br />
<small>We&#8217;ll use the Mavericks team colors to re-color the shoe.</small></p>
<p><!--adsense#bannerimg--></p>
<h3>Pen Tool</h3>
<p>Take the pen tool (set to the shape layer option) and start to outline the red toe of the shoe with the color set to the light blue. Try to cover all of the red area, but if you let a sliver of red show, you can always fix the points later.</p>
<p class="imagef"><a title="Pen Tool Outline" href="http://tutorialdog.com/wp-content/uploads/2008/03/pentool.gif"><img src="http://tutorialdog.com/wp-content/uploads/2008/03/pentool.gif" alt="Pen Tool Outline" /></a></p>
<h3>Blending Mode: Color</h3>
<p>Here is where the magic starts. Simply set the pen tool layer you just created in the previous step to blending mode &#8220;Color&#8221;. To do this, in the Layer palette click on the shape layer, and change the first drop down menu from &#8220;Normal&#8221; to &#8220;Color&#8221;</p>
<p class="imagef"><a title="Blending Mode Color" href="http://tutorialdog.com/wp-content/uploads/2008/03/blendingmodecolor.gif"><img src="http://tutorialdog.com/wp-content/uploads/2008/03/blendingmodecolor.gif" alt="Blending Mode Color" width="480" /></a></p>
<p>Continue to outline each part of the shoe where the color needs to be changed. This includes the swoosh logo, tongue  and sole of the shoe. Again, setting the layer blending mode to color. I used the dark blue to color the laces, and the light blue everywhere there was red on the shoe.</p>
<p>To illustrate how the coloring mode works in Photoshop, try to imagine that the photo is comprised of two layers, one that contains the color of the photo and the other contains the black and white of the photo. The black and white layer contains the shadows and highlights and the color layer contains just solid blocks of vivid color. Its hard for color to show through when a part of the black and white layer is extremely light or dark.  By setting the blending mode to color of the shape layer, you are only changing the color layer of the photo to different colors, in this case light blue. What is great is that the layer isn&#8217;t obstructing the shadows and highlights so it appears as you are just re-coloring the shoe.</p>
<p class="imagef"><img src="http://tutorialdog.com/wp-content/uploads/2008/03/layers.jpg" alt="Black And White" width="480" /></p>
<h3>Coloring Dark and Light Areas</h3>
<p>If you try coloring a white or black part of the shoe, you&#8217;ll notice the colors don&#8217;t really stand out. This is because color doesn&#8217;t show in extreme shadow or light. If you want to color one of these areas, for example the inside of the Nike swoosh on the shoe, you&#8217;ll need to bring up (or down for a light part) the luminosity. Outline the area you want to change with the pen tool just like you would if you were going to set the layer to color. Instead set the color of the layer to white and set the layer blending mode to &#8220;Luminosity&#8221;. You will need to bring the opacity of the layer down quite a bit, but now simply duplicating that layer above the luminosity layer and setting it to blending mode &#8220;Color&#8221;, you can apply color to the layer.</p>
<p>Using the light blue color and the brush tool, you can color the text of wallpaper blue as well. You can brush over the entire text then use the magic wand tool to select the outside of the text and deleting the selection.  Again set the blending mode to color.</p>
<p class="imagef"><a title="Final Results" href="http://tutorialdog.com/wp-content/uploads/2008/03/finalresult.jpg"><img src="http://tutorialdog.com/wp-content/uploads/2008/03/finalresult.jpg" alt="Final Results" width="480" /></a></p>
<p class="download"><strong><a title="Jason Kidd Shoe PSD" href="http://tutorialdog.com/wp-content/uploads/2008/03/jasonkiddshoepsd.zip">Download Jason Kidd Shoe PSD</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://tutorialdog.com/re-coloring-jason-kidds-shoe/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Create An iPod Shuffle</title>
		<link>http://tutorialdog.com/create-an-ipod-shuffle/</link>
		<comments>http://tutorialdog.com/create-an-ipod-shuffle/#comments</comments>
		<pubDate>Sat, 29 Dec 2007 17:49:54 +0000</pubDate>
		<dc:creator>Devin</dc:creator>
				<category><![CDATA[Photoshop Tutorial]]></category>
		<category><![CDATA[icon]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[metal]]></category>
		<category><![CDATA[surface]]></category>

		<guid isPermaLink="false">http://tutorialdog.com/create-an-ipod-shuffle/</guid>
		<description><![CDATA[This Photoshop tutorial will acquaint you with the shape tools, dealing with paths, applying layer styles and dealing with shadows and lighting. This is good tutorial for practicing these techniques.]]></description>
			<content:encoded><![CDATA[<p>This Photoshop tutorial will acquaint you with the shape tools, dealing with paths, applying layer styles and dealing with shadows and lighting. This is good tutorial for practicing these techniques.</p>
<h3>Find A Reference Image</h3>
<p>Apple&#8217;s website has <a href="http://www.apple.com/ipodshuffle/gallery/">high resolution photos of the iPod Shuffle</a> to reference when creating you own Photoshop layered document. Using a reference image will help make sure the measurements &amp; proportions are correct.</p>
<p class="ir3"><a title="Guides" href="http://tutorialdog.com/wp-content/uploads/2007/12/guides.jpg"><img src="http://tutorialdog.com/wp-content/uploads/2007/12/guides.jpg" alt="Guides" width="300" /></a></p>
<h3>Mark Image With Guides</h3>
<p>The next step is to put in guides outlining the Shuffle. First, make sure the rulers are showing in the top &amp; left of the Photoshop document window. If not, go to the menu <em>View &gt;&gt; Rulers</em>. By clicking &amp; dragging the top ruler in the document, a horizontal guide will appear where you let go. A vertical line can be made just the same by dragging from left ruler. Creating guides on the edges of the player and guides that are tangent to click wheel.</p>
<h3>Create the base of the unit using a Round Rectangle</h3>
<p class="floatr"><!--adsense#sr--></p>
<p>Take the rounded rectangle tool (make sure &#8216;Shape Layers&#8217; is select in the option panel) and drag out a 5 pixel rounded rectangle. If you&#8217;ve set snapping to guides, it should be fairly easy to create the rectangle to the same proportions. You now need to adjust some of the anchor points on the path because the object isn&#8217;t a perfect rectangle. You can move the anchor points using the Direct Selection Tool Pointer (directly above the Pen Tool and other shape tools). You may also want to change the curvature by dragging the handle points that radiate from an anchor point.</p>
<p class="imagef"><a title="Rounded Path" href="http://tutorialdog.com/wp-content/uploads/2007/12/roundedpath.gif"><img src="http://tutorialdog.com/wp-content/uploads/2007/12/roundedpath.gif" alt="Rounded Path" /></a><br />
<small>A close up of one corner shows the two points lining up to the grid. The points have been moved slightly moved to conform to the shape of the Shuffle.</small></p>
<h3>Apply Gradient</h3>
<p>To add depth and realism, we&#8217;ll use a gradient to imitate the effect of light on the object. Because the Shuffle is round on the sides, the shadow will likely be around there. Where there is a shadow, there is usually a highlight, which occurs where the flat part of the object meets the rounded part. To apply a gradient to the rounded rectangle creating in the previous step, go to the menu <em>Layer &gt;&gt; Layer Style &gt;&gt; Overlay</em>. Because the shadow occurs uniformly on either side, it will pay to <em>reflect</em> the gradient on either side. This way you don&#8217;t have to repeat the gradient twice. You&#8217;ll want to play with the gradient to get the realistic look. You&#8217;ll need to play around with your settings until you feel you have something that is realistic. I provided a screen grab of what I came up with.</p>
<p class="imagef"><a title="Gradient Overlay Layer Style" href="http://tutorialdog.com/wp-content/uploads/2007/12/gradientoption.gif"><img src="http://tutorialdog.com/wp-content/uploads/2007/12/gradientoption.gif" alt="Gradient Overlay Layer Style" /></a><br />
<a title="Gradient Settings" href="http://tutorialdog.com/wp-content/uploads/2007/12/gradientstyle.gif"><img src="http://tutorialdog.com/wp-content/uploads/2007/12/gradientstyle.gif" alt="Gradient Settings" /></a><br />
<a title="Gradient on Base Unit" href="http://tutorialdog.com/wp-content/uploads/2007/12/gradientsurface.png"><img src="http://tutorialdog.com/wp-content/uploads/2007/12/gradientsurface.png" alt="Gradient on Base Unit" /></a></p>
<p class="floatl"><!--adsense#mr--></p>
<h3>Create The Button Surface</h3>
<p>For the click wheel, we will require the ellipse tool. First make a circle shape that encompasses the entire click wheel. Now in the options palette, choose &#8220;Exclude overlapping shape areas&#8221; (<strong>Figure 1</strong>). If you&#8217;ve used Illustrator, the options to set how shapes will interact with each other is found in the Pathfinder palette.</p>
<p class="imagef"><img src="http://tutorialdog.com/wp-content/uploads/2007/12/pathfinder.gif" alt="Pathfinder" /><br />
<small><strong>Figure 1.</strong> The shapes tools options set to exclude overlaping shapes.</small></p>
<p>Now create the inner circle to make the ring that is the click wheel. Make sure the fill of this layer is white.</p>
<p class="imagef"><a title="Click Wheel" href="http://tutorialdog.com/wp-content/uploads/2007/12/clickwheel1.jpg"><img src="http://tutorialdog.com/wp-content/uploads/2007/12/clickwheel1.jpg" alt="Click Wheel" /></a></p>
<h3>Apply A Layer Style To The Click Wheel</h3>
<p>The next step again involves applying a layer style to a shape. This time though a bevel &amp; emboss and a stroke will be applied. The stroke is a simple 1 px gray line around the shape. The Bevel &amp; Emboss is more or less something that you need to play around with to get the right look. I&#8217;ve provided my settings for each.</p>
<p class="imagef"><a title="Line Stroke" href="http://tutorialdog.com/wp-content/uploads/2007/12/linestroke.gif"><img src="http://tutorialdog.com/wp-content/uploads/2007/12/linestroke.gif" alt="Line Stroke" /></a><a title="Bevel &amp; Emboss" href="http://tutorialdog.com/wp-content/uploads/2007/12/picture-8.png"><img src="http://tutorialdog.com/wp-content/uploads/2007/12/picture-8.png" alt="Bevel &amp; Emboss" /></a><br />
<small>The Stroke and Bevel &amp; Emboss settings for the click wheel.</small></p>
<h3>Button Symbols</h3>
<p>The play/pause, forward, back, volume up &amp; volume down buttons are simple rectangles and triangles. Use the rectangle tool, and the polygon tool set to 3 sides (set this in the options palette) to create these shapes.</p>
<p class="floatr"><!--adsense#sr--></p>
<h3>Create A Realistic Metal Surface</h3>
<p>One small touch you can add is a grain to the metal. Without the grain the look of metal looks a tad too much like plastic. You&#8217;ll want to start out by duplicating the shape layer of the entire iPod Shuffle and set the color to black. From the menu, select Filter &gt;&gt; Noise &gt;&gt; Add Noise. You&#8217;ll have to rasterize the layer. Set the filter to around 100% with Gaussian and Monochromatic.</p>
<p class="imagef"><a title="Add Noise" href="http://tutorialdog.com/wp-content/uploads/2007/12/addnoise.gif"><img src="http://tutorialdog.com/wp-content/uploads/2007/12/addnoise.gif" alt="Add Noise" /></a></p>
<p>Take the opacity down to around 1% &#8211; 2% opacity and set the blending mode to multiply. You&#8217;ll then want to add a mask to this layer. With the gradient tool, you&#8217;ll want to drag a gradient from the top left to bottom right of the iPod Shuffle so that the mask allows to layer to show through the top left of the iPod. Generally, you&#8217;ll want the noise layer to show through where the object shines, and mask out where there is shadow. Small touches like this can do a lot for imitating the look of a metallic surface.</p>
<p class="imagef"><a title="iPod Shuffle Final" href="http://tutorialdog.com/wp-content/uploads/2007/12/shuffle-large-full.gif"><img src="http://tutorialdog.com/wp-content/uploads/2007/12/shuffle-large-full.gif" alt="iPod Shuffle Final" /></a><br />
<small>The Final Result</small></p>
<p class="imagef"><a title="iPod Shuffle Perspective" href="http://tutorialdog.com/wp-content/uploads/2007/12/shuffle-large-perspective.png"><img src="http://tutorialdog.com/wp-content/uploads/2007/12/shuffle-large-perspective.png" alt="iPod Shuffle Perspective" /></a><br />
<small>This is Shuffle uses the same concepts covered in this tutorial.</small></p>
<p class="download"><small><strong><a title="iPod Shuffles" href="http://tutorialdog.com/wp-content/uploads/2007/12/ipodshuffles.zip">iPod Shuffle Photoshop Documents</a></strong></small></p>
]]></content:encoded>
			<wfw:commentRss>http://tutorialdog.com/create-an-ipod-shuffle/feed/</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
		<item>
		<title>How To Create Icons for Mac OS X</title>
		<link>http://tutorialdog.com/how-to-create-icons-for-mac-os-x/</link>
		<comments>http://tutorialdog.com/how-to-create-icons-for-mac-os-x/#comments</comments>
		<pubDate>Thu, 20 Dec 2007 04:28:47 +0000</pubDate>
		<dc:creator>Devin</dc:creator>
				<category><![CDATA[Mac OS X Tutorial]]></category>
		<category><![CDATA[Photoshop Tutorial]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[export]]></category>
		<category><![CDATA[icon]]></category>
		<category><![CDATA[icon composer]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[pixadex]]></category>
		<category><![CDATA[png]]></category>
		<category><![CDATA[tiff]]></category>
		<category><![CDATA[tiger]]></category>

		<guid isPermaLink="false">http://tutorialdog.com/how-to-create-icons-for-mac-os-x/</guid>
		<description><![CDATA[Ever wondered how to make your own Mac icons? Have you ever created an icon and had trouble making the icons fully transparent? If you answer either of these questions with a yes, then this tutorial is for you.]]></description>
			<content:encoded><![CDATA[<p><em>Ever wondered how to make your own Mac icons? Have you ever created an icon and had trouble making the icons fully transparent? If you answer either of these questions with a yes, then this tutorial is for you.</em></p>
<p class="floatl"><!--adsense#mr--></p>
<p>To complete this tutorial, you will need Adobe Photoshop (or any other image editor that will export transparent TIFF files), Xcode and CandyBar installed on your Mac. Xcode is Apple&#8217;s free software development kit. You should be able to install Xcode from your computer&#8217;s install disk or download it off <a href="http://developer.apple.com/tools/xcode/">Apple&#8217;s Website</a>. It&#8217;s also important to note that the newest version of Mac OS X, Leopard has moved to a maximum 512 pixel icon sizes. <a href="http://www.panic.com/candybar/">CandyBar</a> allows you to organize your icons.</p>
<h3>Designing The Icon</h3>
<p>Designing the icon is up to you and your imagination. Here is a list though of things to keep in mind when designing your icon.</p>
<ul>
<li><strong>Apple Human Interface Guidelines</strong> Apple has there own set <a href="http://developer.apple.com/documentation/UserExperience/Conceptual/OSXHIGuidelines/XHIGIcons/chapter_14_section_3.html">guidelines</a> and rules to which they expect icons to be created by.</li>
<li><strong>Plan Your Icon For Scale</strong> Like designing a logo, you need to be able to scale your icon from 16 x 16 pixels all the way now to 512 x 512 pixels with Leopard. For the 16 pixel icon you may want to take out elements. For example, for my RSS icon, I&#8217;m eliminating everything but the orange rss button.</li>
<li><strong>Leave Margins for Your Icon</strong> You don&#8217;t want one icon to <a href="http://www.artofadambetts.com/weblog/?p=105">outwieght the others because of it&#8217;s size</a>.</li>
</ul>
<h3>Exporting The Icon</h3>
<p class="ir3"><img src="http://tutorialdog.com/wp-content/uploads/2007/12/icon_template_tiger.gif" alt="RSS Icon Icon Template" /></p>
<p>I&#8217;ve create an easy to use <a title="Mac OS X Icon Template" href="http://tutorialdog.com/wp-content/uploads/2007/12/icon-templates.zip">Photoshop Template</a> just for mapping out each icon size. This way you don&#8217;t have to bother creating multiple size documents and what not. Simply drag and drop the icon layer(s) onto the template and the duplicate and resize according to each size on the template. At this time you may want to sharpen icons at smaller sizes to give them more definition. <em>Remember: you can use Fade controls (located under the Edit menu) after using the sharpen filter.</em></p>
<p>Now that you&#8217;ve completely resized your icons and are ready to make them into an icon, hide the back drop layer. Then go to File &gt;&gt; Save As. You want to format the document as a TIFF file with the options, &#8220;Layers&#8221; unchecked and &#8220;As A Copy&#8221; checked. A TIFF Options dialogue box should appear after hitting the save button. It&#8217;s important to have Compression set to &#8220;None&#8221; and &#8220;Save Transparency&#8221; checked. This way, the icon comes out exactly as you intended.</p>
<p class="imagef"><img src="http://tutorialdog.com/wp-content/uploads/2007/12/tiff-options.png" alt="Tiff Options" /><br />
<small>Important TIFF Settings to getting the best looking icon</small></p>
<p>Now all you have to do is duplicate the TIFF file four / five times (one for each size), and crop the file to elimante all other icons. Knowing where to crop the documents should be simple because the guides still remain from the Photoshop document.</p>
<p class="floatr"><!--adsense#mr--></p>
<h3>Using Icon Composer &amp; CandyBar</h3>
<p>Icon Composer is located in the Applications &gt;&gt;  Utilities in the Xcode folder. Once you&#8217;ve opened the application, creating the icon is easy as dragging the TIFF files over their appropiate sizes. Agree to Extract Mask when asked. Save a fresh ICNS file. The icon shouldn&#8217;t yet appear as the actual icon on the document. This is where CandyBar comes in handy. Just drag the .icns file into CandyBar and then drag out the icon image show in the application.</p>
<p class="imagef"><img src="http://tutorialdog.com/wp-content/uploads/2007/12/iconcomposer.gif" alt="Icon Composer" /><br />
<small>Icon Composer is as simple as dragging and dropping the TIFF files on to its appropriate spot.</small></p>
<p>Exporting a TIFF, and not a transparent PNG file from the Export to Web menu proved vital especially when exporting transparent images. This particular icon, when made into an icon using an exported PNG file will cause the smoke coming off the RSS to pixelate. This pixalation is fixed though when exported a TIFF file with tranparency.</p>
<p class="imagef"><img src="http://tutorialdog.com/wp-content/uploads/2007/12/rssfinal.png" alt="RSS Final" /></p>
]]></content:encoded>
			<wfw:commentRss>http://tutorialdog.com/how-to-create-icons-for-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>43</slash:comments>
		</item>
		<item>
		<title>Create A Leopard &#8216;X&#8217; in Photoshop</title>
		<link>http://tutorialdog.com/create-a-leopard-x-in-photoshop/</link>
		<comments>http://tutorialdog.com/create-a-leopard-x-in-photoshop/#comments</comments>
		<pubDate>Sun, 28 Oct 2007 05:16:59 +0000</pubDate>
		<dc:creator>Devin</dc:creator>
				<category><![CDATA[Photoshop Tutorial]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[black]]></category>
		<category><![CDATA[burn]]></category>
		<category><![CDATA[dodge]]></category>
		<category><![CDATA[gloss]]></category>
		<category><![CDATA[metal]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[selection]]></category>
		<category><![CDATA[shine]]></category>

		<guid isPermaLink="false">http://tutorialdog.com/create-a-leopard-x-in-photoshop/</guid>
		<description><![CDATA[With the recent release of <a href="http://www.apple.com/macosx/">Mac OS X Leopard</a>, I've decided to create a tutorial where you can create your own 'X'. This tutorial is a great exercise in using the dodge and burn tool as well as working with selections.]]></description>
			<content:encoded><![CDATA[<p>With the recent release of <a href="http://www.apple.com/macosx/">Mac OS X Leopard</a>, I&#8217;ve decided to create a tutorial where you can create your own &#8216;X&#8217;. This tutorial is a great exercise in using the dodge and burn tool as well as working with selections.</p>
<p align="center"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="wmode" value="transparent" /><param name="src" value="http://www.youtube.com/v/FQTPyCGdaJA&amp;rel=1" /><embed type="application/x-shockwave-flash" width="425" height="355" src="http://www.youtube.com/v/FQTPyCGdaJA&amp;rel=1" wmode="transparent"></embed></object></p>
<p class="floatl"><!--adsense#mr--></p>
<p><strong>Set the stage</strong>. Take a dark photo will very little color so you can see the X in proper lighting. If the X were against a white background, it would be hard to see the highlights of the edges in the later stages of this tutorial. This desatuared <a title="Cosmos Wallpaper" href="http://tutorialdog.com/wp-content/uploads/2007/10/cosmos.jpg">Cosmos Wallpaper</a> will do the job to achieve this.</p>
<div class="imagef"><a href="http://tutorialdog.com/wp-content/uploads/2008/05/1.jpg"><img class="alignnone size-full wp-image-241" title="1" src="http://tutorialdog.com/wp-content/uploads/2008/05/1.jpg" alt="Myraid Pro Bold" width="500" height="384" /></a></div>
<h3>Type out the &#8216;X&#8217;</h3>
<p>Take the text tool and type out the capital letter &#8216;X&#8217;. I&#8217;ve found that the &#8220;Myriad Pro Bold&#8221; font creates a close resemblance to the real X used in Apple&#8217;s artwork. Make the size of the X around 800 pt. (Remember, its always better to start large, then scale down when you are finished.) Set the color to the default black.</p>
<p><strong>Gradient Overlay Layer Style</strong></p>
<p class="il3"><img src="http://tutorialdog.com/wp-content/uploads/2007/10/gradientoverlay2.gif" alt="Gradient Overlay" width="300" /></p>
<p>Next, apply a layer style effect to the &#8216;X&#8217;. To access the layer style palette, with the X layer selected, go to the menu under <em>Layer &gt;&gt; Layer Style &gt;&gt; Gradient Overlay. </em>Set the opacity to 9% and the angle to -90 degrees.</p>
<h3>Bevel Edge</h3>
<p>Right click the &#8216;T&#8217; corresponding to the text layer and choose &#8220;Select Layer Transparency&#8221;. Create a new layer above the X and fill in the  selection with the color #4c4c4c. After that, go to <em>Select &gt;&gt; Modify &gt;&gt; Contract&#8230;</em> Contracting the selection will reduce the  size of the selection similar to how a image transform would. Depending on how large you&#8217;re, you&#8217;ll want to change the contraction size, but the particular size I made the &#8216;X&#8217;, I&#8217;ll choose 3 pixels. Now with that new layer still select, hit delete so that the new layer trims around the &#8216;X&#8217;.</p>
<div class="imagef"><a href="http://tutorialdog.com/wp-content/uploads/2008/05/2.jpg"><img class="alignnone size-full wp-image-242" title="2" src="http://tutorialdog.com/wp-content/uploads/2008/05/2.jpg" alt="Trim" width="500" height="401" /></a></div>
<p><small>A small subtle trim will give the effect of depth.</small></p>
<p class="floatr"><!--adsense#mr--></p>
<p><strong>Dodge &amp; Burn Tools</strong><br />
Its time to take out the dodge and burn tools. These tools are very good for a situation like this because they won&#8217;t add any new pixels and the tools won&#8217;t harm layers other than the one that is selection. With both of these tools, make sure you use a brush hardness of 0%. This will stop any harsh lines created. It takes a while to get the setting right for the situation, but I&#8217;ve found the dodge tool works great at a Range of Shadows and Exposure at 21% (changes these in the options palette). For the burn tool, a Range of Shadows and Exposure set to 6% (yes that 6%, these tools need little exposure have an effect on the image). Add highlights and shadows to the trim layer just like you were painting on it.</p>
<p class="imagef"><a href="http://tutorialdog.com/wp-content/uploads/2008/05/3.jpg"><img class="alignnone size-full wp-image-243" src="http://tutorialdog.com/wp-content/uploads/2008/05/3.jpg" alt="Dodge &amp; Burn" width="500" height="377" /></a><br />
<small>The dodge and burn tools should add perspective and proper lighting to the &#8216;X&#8217;.</small></p>
<p><strong>Use the Selection Tool As A Mask</strong><br />
A great way to create an edge is to take the square marquee selection tool, and create along the crease of the &#8216;X&#8217;. Take the dodge tool and brush  inside the selection, then go to Select &gt;&gt; Inverse and burn the other side.</p>
<p class="imagef"><a href="http://tutorialdog.com/wp-content/uploads/2008/05/4.jpg"><img class="alignnone size-full wp-image-244" src="http://tutorialdog.com/wp-content/uploads/2008/05/4.jpg" alt="Selection" width="381" height="328" /></a><br />
<small>Using the rectangle marquee tool is a great way to create edges at joints in the &#8216;X&#8217; when using the dodge and burn tools.</small></p>
<h3>Gloss</h3>
<p>Last but not least is the large gloss reflection that will come across the X. Create a new layer and select the pen tool. With the paths option chosen from options palette, create a swoosh across the &#8216;X&#8217; and close the pen path outside &amp; around the &#8216;X&#8217;. Take the Path Selection Tool (the point just above the pen tool) and right click on the path and pick &#8220;Fill Path&#8230;&#8221;. Fill the path with white. Again using the &#8220;Select Layer Transparency&#8221; from the X text layer, create the selection and go to <em>Select &gt;&gt; Inverse</em> and delete the white outside the X.<br />
Change the opacity of the gloss layer to around 40%. Create a layer mask for the gloss layer. Take a white to black gradient set to radial, and drag a gradient from the left side of the X where the reflection appears on the X to about 200 pixels past where the reflection leaves on other side of the X. With a large black brush set to 0% hardness (we don&#8217;t want any edges) brush along top left of &#8216;X&#8217; to fade out some reflection.</p>
<p class="imagef"><a href="http://tutorialdog.com/wp-content/uploads/2008/05/5.jpg"><img class="alignnone size-full wp-image-245" src="http://tutorialdog.com/wp-content/uploads/2008/05/5.jpg" alt="Final Result" width="500" height="265" /></a><br />
<small><strong>Final Result</strong></small></p>
<p class="download"><strong><a href="http://tutorialdog.com/wp-content/uploads/2007/10/leopardx.zip">Download PSD</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://tutorialdog.com/create-a-leopard-x-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>43</slash:comments>
		</item>
		<item>
		<title>Add Focus To Your Photo &amp; Grab Attention</title>
		<link>http://tutorialdog.com/add-focus-to-your-photo-and-grab-attention/</link>
		<comments>http://tutorialdog.com/add-focus-to-your-photo-and-grab-attention/#comments</comments>
		<pubDate>Sat, 13 Oct 2007 02:07:16 +0000</pubDate>
		<dc:creator>Devin</dc:creator>
				<category><![CDATA[Photoshop Tutorial]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[contrast]]></category>
		<category><![CDATA[hue]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[punch]]></category>
		<category><![CDATA[sharpen]]></category>

		<guid isPermaLink="false">http://tutorialdog.com/add-focus-to-your-photo-and-grab-attenion/</guid>
		<description><![CDATA[This Photoshop tutorial will show you how to take a photo that has great potential and turn it into one that will stop people dead in their tracks and have them gazing at the photo. First off, I got this incredible photo of the puppy free off Flickr. This particular photographer ny156uk has some great photos for commercial use. You can find more free photos for commercial use on Flickr by doing an advanced search.]]></description>
			<content:encoded><![CDATA[<p>This Photoshop tutorial will show you how to take a photo that has great potential and turn it into one that will stop people dead in their tracks and have them gazing at the photo.</p>
<p>First off, I got this incredible photo of the puppy free off <a href="http://flickr.com/">Flickr</a>. This particular photographer <a href="http://flickr.com/photos/ny156uk/">ny156uk</a> has some great photos for commercial use. You can find more free photos for commercial use on Flickr by doing an advanced search.</p>
<p align="center"> </p>
<p align="center"><!--adsense#photovideo--></p>
<p class="imagef"><a title="Original Doggie Photo" href="http://flickr.com/photo_zoom.gne?id=817118407&amp;size=l"><img src="http://tutorialdog.com/wp-content/uploads/2007/10/original.jpg" alt="Original Doggie Photo" /></a><br />
<small><strong>Figure 1.</strong> The Original Photo (Aww how cute)</small></p>
<p class="floatr"><!--adsense#mr--></p>
<p>Before starting, keep in mind that it is important to name your layers and lock the original photo layer. We&#8217;ll be creating a few duplicate layers and adding a title will help distinguish the subtle changes of each layer. We also want to keep an original photo layer so that we&#8217;ll have the original photo to work off from and not one that has already been altered.</p>
<h3>Increase Saturation &amp; Set the Layer Blending Mode to Color</h3>
<p>First duplicate the original layer, again we do <em>not </em>want to change the original photo layer. To duplicate the layer, click on the photo layer in the layer palette and either go to the menu under <em>Layer &gt;&gt; Duplicate Layer&#8230;</em> or hit the command ctrl + j. Name this layer &#8216;Color&#8217;. Now with that new duplicated layer selected, go to <em>Image &gt;&gt; Adjustments &gt;&gt; Hue/Saturation (or ctrl + u)</em>. Drag the Saturation Slider to the right to about +65 (Figure 2). What this does is makes the colors more vibrant. Click OK to close the Hue/Saturation menu. With that layer still selected, change the blending mode to &#8216;Color&#8217;. To do this, go the Layer palette, click on the drop down menu where it says &#8216;Normal&#8217; (the top most left item) and at the bottom of the list there will be an option called &#8216;Color&#8217;. By setting the layer to Color, we&#8217;ll keep the vividness of the colors, while not distorting the photo.</p>
<p class="imagef"><a title="Hue &amp; Saturation Preview" href="http://tutorialdog.com/wp-content/uploads/2007/10/fullhuesat.jpg"><img src="http://tutorialdog.com/wp-content/uploads/2007/10/huesat.jpg" alt="Hue &amp; Saturation Preview" /></a><br />
<small><strong>Figure 2.</strong> The saturation of the photo is turned up so the image looks distorted.</small></p>
<p class="floatl"><!--adsense#mr--></p>
<h3>Apply The Sharpen More Filter &amp; Fade</h3>
<p>Duplicate the original photo again. This time apply the sharpen more filter (<em>Filter &gt;&gt; Sharpen &gt;&gt; Sharpen More</em>). The sharpness should be overkill, but there is an easy way in Photoshop to undo part of this effect. Go to <em>Edit &gt;&gt; Fade Sharpen More&#8230;</em>. This menu will allow you to change to opacity and blending mode of the filter. For our purposes, we&#8217;ll just change the opacity to 20%. NOTE: You can only fade a filter directly after you&#8217;ve applied it. You can&#8217;t come back to it after Photoshop&#8217;s history has logged some other action.</p>
<p class="imagef"><a title="Sharpen More Fade" href="http://tutorialdog.com/wp-content/uploads/2007/10/fadelarge.jpg"><img src="http://tutorialdog.com/wp-content/uploads/2007/10/fadethumb.jpg" alt="Sharpen More Fade" /></a><br />
<small><strong>Figure 3.</strong> The fade menu almost &#8220;undoes&#8221; the sharpen more filter.</small></p>
<h3>Overlay Radial Gradient</h3>
<p class="ir3"><a title="Overlay Preview" href="http://tutorialdog.com/wp-content/uploads/2007/10/overlaygradient.jpg"><img src="http://tutorialdog.com/wp-content/uploads/2007/10/overlay.jpg" alt="Overlay Preview" /></a><br />
<small><strong>Figure 4.</strong> The photo with a radial gradient set to overlay</small></p>
<p>The next two steps will concentrate on making the dog the focal point of the image. Create a new blank top layer. Take the gradient tool, and with a white to bl ackradial gradient drag out from the center so that the circle is white and the outer regions fade to black. You may need to adjust the size of this circle, but make sure the circle covers a large span. Now set this layer to blending mode Overlay with an opacity of 55%.</p>
<h3>Multiply Radial Gradient</h3>
<p>Duplicate that radial gradient layer. Change the blending mode to Multiply and opacity 25%. Now go to <em>Edit &gt;&gt; Adjustments &gt;&gt; Levels</em> (Ctrl + L) and drag both black and gray sliders closer together. What this does is make the distance between black and white closer.</p>
<p class="imagef"><a title="Final Results" href="http://tutorialdog.com/wp-content/uploads/2007/10/fullresultlarge.jpg"><img src="http://tutorialdog.com/wp-content/uploads/2007/10/finalresult.jpg" alt="Final Results" /></a></p>
<p class="download"><strong><a href="http://tutorialdog.com/wp-content/uploads/2007/10/dogphotopsd.zip">Download PSD</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://tutorialdog.com/add-focus-to-your-photo-and-grab-attention/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>A Guide To Exporting to The Web in Photoshop</title>
		<link>http://tutorialdog.com/a-guide-to-exporting-to-the-web-in-photoshop/</link>
		<comments>http://tutorialdog.com/a-guide-to-exporting-to-the-web-in-photoshop/#comments</comments>
		<pubDate>Sun, 07 Oct 2007 18:06:58 +0000</pubDate>
		<dc:creator>Devin</dc:creator>
				<category><![CDATA[Photoshop Tutorial]]></category>
		<category><![CDATA[colors]]></category>
		<category><![CDATA[export]]></category>
		<category><![CDATA[gif]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[jpeg]]></category>
		<category><![CDATA[jpg]]></category>
		<category><![CDATA[png]]></category>
		<category><![CDATA[png-24]]></category>
		<category><![CDATA[png-8]]></category>
		<category><![CDATA[save]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://tutorialdog.com/a-guide-to-exporting-to-the-web-in-photoshop/</guid>
		<description><![CDATA[While it may be overlooked with high bandwidth connections becoming ever so common, it still is important to optimize an image. If you visitors can't load your web site quickly, they will leave because it is easy to find another website to look at. Reduce image sizes to the size it will appear at on the web page!]]></description>
			<content:encoded><![CDATA[<p>While it may be overlooked with high bandwidth connections becoming ever so common, it still is <a title="Optimize your web page" href="http://theblogbeat.com/optimize-your-web-page/">important to optimize an image</a>. If you visitors can&#8217;t load your web site quickly, they will leave because it is easy to find another website to look at.</p>
<h3>Reduce image sizes to the size it will appear at on the web page!</h3>
<p>There are two reasons to do so: reduce file size and downsized images look bad in web browsers.</p>
<ul>
<li>You can save bandwidth by optimizing your images to the size they will appear on the web page. If you want, you can create a thumbnail image for the web page, and link to a larger version.</li>
<li>While the Safari web browser is good at reducing images, web browsers like Internet Explorer and Firefox don&#8217;t do that well at showing images at small sizes than they are made for (it can make the image look really bad, trust me).</li>
</ul>
<p><span class="floatr"><!--adsense#mr--></span><br />
<strong>Gallery images</strong><br />
If you don&#8217;t want your readers click off the web page to view a large image, there is a cool solution to this problem.  <a title="Javascript Image Viewer" href="http://www.doknowevil.net/litebox/">Litebox </a>is a script that allows you to pop up an image in the web page to show a large version of the image. The script isn&#8217;t that large of a file size and can improve the usability of your site.</p>
<h3>Image Compressions Formats</h3>
<p>The three standards currently are JPEG, GIF, and PNG. Each format has its upside and downsides, but if you use the right format for your situation, everything should be fine.</p>
<ol>
<li><strong><acronym title="Joint Photographic Experts Group">JPEG</acronym> or JPG</strong> is a the best format to use for images like photos. There is no transparency with jpeg images.</li>
<li><strong><acronym title="Graphics Interchange Format">GIF</acronym></strong> is the best format for web graphics and illustration type images. GIF is great for graphics because the color palette, unlike a jpg image, is limited  to 256 different colors. This allows a gif format to boast smaller file sizes, while retaining good detail when a graphic image is exported. GIF can also export images with transparency, but can leave jagged edges.
<p class="imagef"><a title="A photo with different gif color limits" href="http://tutorialdog.com/wp-content/uploads/2007/09/gif.png"><img src="http://tutorialdog.com/wp-content/uploads/2007/09/gif.png" alt="A photo with different gif color limits" width="550" /></a> <small><strong>Figure 1.</strong> This is how a Gif image looks at different color ranges.</small></p>
</li>
<li><strong><acronym title="Portable Network Graphics">PNG</acronym></strong> is a competitor to the GIF format. There are two versions of PNG, 8 and 24. Version 8 is very similar to GIF, so the one to look at is 24. PNG 24 can sport great detail that one would want from a jpg image, but is able to compress the file size better. PNG 24 also allows you to export transparent images that would appear jagged with exporting with gif.</li>
</ol>
<h3>Exploring Export To Web&#8230; in Photoshop</h3>
<p class="iright"><img src="http://tutorialdog.com/wp-content/uploads/2007/10/imagecompression.gif" alt="Image Compression Palette" /></p>
<p>Photoshop has a simple to use mini application in Photoshop thats sole purpose is to get images web ready. To get to it, go to the Menu Bar, <em>File &gt;&gt; Save for Web&#8230;</em> A large window will open up with the document you have open in the new window. To the right you&#8217;ll see the options for which file format to compress at. The only two options you need to worry about is the compression formats (GIF, JPEG, PNG-24) and colors for gif and image quality for JPEG. For PNG-24 you need to set whether the image is transparent or not. If you go to the 4-up tab, Photoshop allows you to compare 4 different exporting settings. The image size of each export setting is stated under the image along with the compression settings. You can test whether its worth it to limit the color palette of a gif image, or if bringing down the jpeg quality is noticable.</p>
<p class="ileft"><img src="http://tutorialdog.com/wp-content/uploads/2007/10/imagesize.gif" alt="Image Size" /></p>
<p><strong>Changing Image Size</strong><br />
As stated before, you want to compress the image to the actual size at which they will appear on the web page. You can easily change the size of the image with in the window so that you don&#8217;t have to worry about reducing the document. To the right of the image and under the compression options, you&#8217;ll see to tabs, &#8216;Color Table&#8217; and &#8216;Image Size&#8217;. Click on the &#8216;Image Size&#8217; tab and you can easily punch in a new image size. Make sure to check the &#8216;Constrain Proportions&#8217; and hit the Apply button.</p>
<ul>
<li>When exporting transparent images, your best bet is with PNG-24. The file sizes tend to be larger, but they provide spot on quality.</li>
<li>When dealing with vector art, cartoons or any type of clip art, your best bet is GIF compression.</li>
<li>When dealing with photos, the best bet is JPEG compression.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://tutorialdog.com/a-guide-to-exporting-to-the-web-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Photoshop Banner</title>
		<link>http://tutorialdog.com/photoshop-banner/</link>
		<comments>http://tutorialdog.com/photoshop-banner/#comments</comments>
		<pubDate>Sun, 07 Oct 2007 02:12:21 +0000</pubDate>
		<dc:creator>Devin</dc:creator>
				<category><![CDATA[Photoshop Tutorial]]></category>
		<category><![CDATA[banner]]></category>
		<category><![CDATA[effect]]></category>
		<category><![CDATA[illustration]]></category>
		<category><![CDATA[layer style]]></category>
		<category><![CDATA[photoshop]]></category>

		<guid isPermaLink="false">http://tutorialdog.com/flapping-banner/</guid>
		<description><![CDATA[<img align="right" class="alignright" src="http://tutorialdog.com/wp-content/themes/chalk/images/psbanner.png" /> This tutorial will show you how to create a banner graphic banner in the same vein of medieval graphics. For this tutorial you will need Adobe Phothoshop CS or better. The tool we will use are the pen, text and shape tools. This tutorial will test your pen tool skills and ability to play around with shapes and layer styles.]]></description>
			<content:encoded><![CDATA[<p>This tutorial will show you how to create a banner graphic banner in the same vein of medieval graphics. For this tutorial you will need Adobe Phothoshop CS or better. The tool we will use are the pen, text and shape tools. This tutorial will test your pen tool skills and ability to play around with shapes and layer styles.</p>
<p align="center"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="wmode" value="transparent" /><param name="src" value="http://www.youtube.com/v/mLJ-Dt1vz1Q&amp;rel=1" /><embed type="application/x-shockwave-flash" width="425" height="355" src="http://www.youtube.com/v/mLJ-Dt1vz1Q&amp;rel=1" wmode="transparent"></embed></object></p>
<p><span class="floatr"><!--adsense#sr--></span></p>
<h3>Type out your banner text and curve the text</h3>
<p>Type out the text you want to go on the banner and then select the text and click on the &#8220;Create warped text&#8221; button located in the Options Palette. Create a subtle curve, because later you want to create the banner and if its curve too much, it will look awkward. I added some depth to the text.</p>
<p class="imagead"><img src="http://tutorialdog.com/wp-content/uploads/2007/10/text.jpg" alt="Curved Text" align="middle" /><br />
<span><small><strong>Figure 1.</strong> Warped Text with Layer Style</small></span></p>
<h3>Create A Background Object</h3>
<p>This is optional, but you can create something like a heart or a plaque to which the banner can be in front of. It adds visual appeal and adds height to the graphic. I simply took the heart shape from the shape presets and added a gradient to add depth.</p>
<p class="imagef"><img src="http://tutorialdog.com/wp-content/uploads/2007/10/heart.gif" alt="Heart Graphic" /><br />
<span><small><strong>Figure 2.</strong> Heart Shape with Gradient Overlay Layer Style</small></span></p>
<h3>Use the Pen Tool to create the primary part of the banner</h3>
<p>Take the pen tool, and pen out a banner the aligns with the curvature of the text. You&#8217;ll want to slightly curve the ends of the banner. As a side note, you can also take the square tool and try manipulating the shape to create the effect you want. Add a drop shadow and a black to white gradient set to overlay to add depth and realism.</p>
<p class="imagef"><img src="http://tutorialdog.com/wp-content/uploads/2007/10/banner.gif" alt="Banner" /> <img src="http://tutorialdog.com/wp-content/uploads/2007/10/layerstyle.gif" alt="Layer Style" /><br />
<span><small><strong>Figure 3.</strong> The banner layer goes under text layer. The banner needs two layer styles, a gradient and drop shadow.</small></span></p>
<h3>Create the second fold of the banner</h3>
<p>This fold adds accent to the banner, but it is tough to make the fold to look right. <em>My tip is to try to start adding pen tool points where the primary part of the banner would end. By starting the path behind the banner, its easier to conceptualize where the next point should go.</em> Do this step for one side of the banner as you can copy and flip the path later. Copy the effect from the primary part of the banner by right clicking and copy the style effect and past it on the new layer.</p>
<p class="imagef"><img src="http://tutorialdog.com/wp-content/uploads/2007/10/firstfold.gif" alt="Banner First Fold" /><br />
<span><small><strong>Figure 4.</strong> The first fold should look like an extension of the previous part.</small></span></p>
<p> </p>
<h3>Create the end of the banner</h3>
<p>Like step 4, try to create this part of the banner like an extension of the previous part. Close the banner so that the ends look like a &#8216;v&#8217;. Again copy and paste the style effect over to this layer.</p>
<h3>Duplicate and Flip the second fold and the end of the banner</h3>
<p>To duplicate the layers, select both and go to <em>Layer &gt;&gt; Layer Duplicate</em>. Then to flip the two shapes, go to <em>Edit &gt;&gt; Transform &gt;&gt; Flip Horizontal.</em></p>
<p class="imagef"><img src="http://tutorialdog.com/wp-content/uploads/2007/10/finalbanner.gif" alt="Final Banner Graphic" /></p>
<p><span class="download"><strong><a href="http://tutorialdog.com/wp-content/uploads/2007/10/linklove.psd">Download PSD</a></strong></span></p>
]]></content:encoded>
			<wfw:commentRss>http://tutorialdog.com/photoshop-banner/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
	</channel>
</rss>
