<?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>AJ McClary &#187; Adobe Photoshop</title> <atom:link href="http://www.ajmcclary.com/tags/adobe-photoshop/feed" rel="self" type="application/rss+xml" /><link>http://www.ajmcclary.com</link> <description>Located in Washington DC/Northern Virginia</description> <lastBuildDate>Fri, 13 Jan 2012 01:12:27 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>Making a Website Template With All the Fixin&#8217;s</title><link>http://www.ajmcclary.com/making-a-website-template-with-all-the-fixins.html</link> <comments>http://www.ajmcclary.com/making-a-website-template-with-all-the-fixins.html#comments</comments> <pubDate>Wed, 05 Dec 2007 03:32:20 +0000</pubDate> <dc:creator>A.J. McClary</dc:creator> <category><![CDATA[Web Design]]></category> <category><![CDATA[Adobe Photoshop]]></category> <category><![CDATA[HTML]]></category> <category><![CDATA[Templates]]></category><guid
isPermaLink="false">http://www.amazingdesignsecrets.com/making-a-website-template-with-all-the-fixins.html</guid> <description><![CDATA[Now that you’ve learned basic HTML and CSS skills, its time to apply those tools to the website template that we made for the Women&#8217;s Group, the design we’ve been working with. If you feel that you’re lacking in the HTML and CSS skills, don’t worry you’ll definitely get a hang of it by the [...]]]></description> <content:encoded><![CDATA[<p>Now that you’ve learned basic HTML and CSS skills, its time to apply those tools to the website template that we made for the Women&#8217;s Group, the design we’ve been working with. If you feel that you’re lacking in the HTML and CSS skills, don’t worry you’ll definitely get a hang of it by the end of the course. Practice makes perfect in this field, but anybody has the capability to be a great artist and programmer. I look forward to hearing from you and seeing all of the designs you’ve put together!<span
id="more-80"></span></p><p>Open the webpage that we’ve generated from the original design. It should be located in /web/index.html. Our graphics editor does a great job at eliminating the creation of HTML files and the initial programming that we did in the previous chapter. By the way, I  chose this design because of its simplicity and ease of scalability. Now that we have the HTML file generated, we just need to make this web page practical.</p><p>The first thing that needs to be done is to remove the layer where the body of the page where all of the text is (in this design it is the about us section). To do this, hover over the image in your web browser, right click on about us, hit properties and find out what the image is called.</p><p>In this case, the image is called Divas_13.jpg, and it’s located in the images folder. Now, open the web page within your text editor like we’ve done earlier in the book. The easiest way to do this is to open note pad (start, run, type in notepad, and click ok) and go to file open, select the HTML file you’ve been working with, and select open.</p><p>Now what you need to do is scroll down to where the SRC is images/Divas_13.jpg and completely alter that line. The first thing you need to do is copy the width and the height to the TD tag, ad a background color to the TD tag (bgcolor) and then completely remove the image from that table column. Here is an example:</p><p>Before:</p><blockquote><p>&lt;td colspan=&#8221;6&#8243;&gt;&lt;img<br
/> src=&#8221;images/Divas_13.jpg&#8221; width=&#8221;539&#8243;<br
/> height=&#8221;410&#8243; alt=&#8221;"&gt;&lt;/td&gt;</p></blockquote><p>After:</p><blockquote><p>&lt;td colspan=&#8221;6&#8243; width=&#8221;539&#8243; height=&#8221;410&#8243;<br
/> bgcolor=&#8221;black&#8221;&gt;<br
/> &lt;/td&gt;</p></blockquote><p>Now preview your HTML file in your web browser: The body has been completely removed and now you have the &lt;TD&gt;&lt;/TD&gt; space to add text. Here is the text I’m going to add:</p><blockquote><p>Test Data delivers the highest quality designs and marketing solutions at affordable prices. We Believe that you need a comprehensive strategy to catch and compel your target market. We believe in creating demand for your talents, products or services through positive Web-based technologies, Media and networking.</p></blockquote><p>So to achieve this, we need to apply it into the table, but we need to apply a white font to all of the text in the table. We will do this with a STYLE tag:</p><blockquote><p>&lt;td colspan=&#8221;6&#8243; width=&#8221;539&#8243; height=&#8221;410&#8243;  bgcolor=&#8221;black&#8221; STYLE=&#8221;color:white;&#8221;&gt;<br
/> Test Data delivers the highest quality designs and marketing solutions at affordable prices. We Believe that you need a comprehensive strategy to catch and compel your target market. We believe in creating demand for your talents, products or services through positive Web-based technologies, Media and networking.<br
/> &lt;/td&gt;</p></blockquote><p>Now, notice that the text is in the middle of the table? We need to move it to the top of the table, and to do this, we use the VALIGN tag. VALIGN allows you to Veritically align your content to the top, middle, or bottom of the column. It defaults to the middle, so we just need to change it to the top:</p><blockquote><p>&lt;td colspan=&#8221;6&#8243; width=&#8221;539&#8243; height=&#8221;410&#8243;  bgcolor=&#8221;black&#8221; STYLE=&#8221;color:white;&#8221; VALIGN=&#8221;top&#8221;&gt;<br
/> Test Data delivers the highest quality designs and marketing solutions at affordable prices. We Believe that you need a comprehensive strategy to catch and compel your target market. We believe in creating demand for your talents, products or services through positive Web-based technologies, Media and networking.<br
/> &lt;/td&gt;</p></blockquote><p>The next step is to improve this font and add style to your text. To do this, we’re going to add &lt;p&gt; around our content and in the header, we are going to assign &lt;p&gt; to a certain font and font size.</p><p>Add this to the top of the page right below the &lt;/TITLE&gt; tag, but above the &lt;/HEAD&gt; tag:</p><blockquote><p>&lt;STYLE&gt;<br
/> P {<br
/> Font-Family: Verdana;<br
/> Font-Size: 12px;<br
/> }<br
/> H1 {<br
/> Font-Family: Verdana;<br
/> Font-Size: 14px;<br
/> }<br
/> &lt;/STYLE&gt;</p></blockquote><p>And add the &lt;P&gt; tag to your content:</p><blockquote><p>&lt;td colspan=&#8221;6&#8243; width=&#8221;539&#8243; height=&#8221;410&#8243;<br
/> bgcolor=&#8221;black&#8221; STYLE=&#8221;color:white;&#8221;<br
/> VALIGN=&#8221;top&#8221;&gt;<br
/> &lt;p&gt;Test Data delivers the highest quality<br
/> designs and marketing solutions at affordable prices. We Believe that you need a comprehensive strategy to catch and compel your target market. We believe in creating demand for your talents, products or services through positive Web-based technologies, Media and networking. &lt;/p&gt;<br
/> &lt;/td&gt;</p></blockquote><p>The next step is to apply a background to the actual web page itself. This will get rid of the all of the white you see around the design. For purposes of this design, we’re going to make it black. So, alter the body tag:</p><p>Before:</p><blockquote><p>&lt;body bgcolor=&#8221;#FFFFFF&#8221; leftmargin=&#8221;0&#8243; topmargin=&#8221;0&#8243; marginwidth=&#8221;0&#8243; marginheight=&#8221;0&#8243;&gt;</p></blockquote><p>After:</p><blockquote><p>&lt;body bgcolor=&#8221;black&#8221; leftmargin=&#8221;0&#8243; topmargin=&#8221;0&#8243; marginwidth=&#8221;0&#8243; marginheight=&#8221;0&#8243;&gt;</p></blockquote><p>The next step, how that we’ve established styles, is to associate links to the about us, events, members only, and contact us graphics. I’m also going to associate the logo, to go to a home page (index.html, which we haven’t created yet). We’re going to find these using the same method we did to select the body picture, except this time we’re not going to delete it, we’re going to add an &lt;A&gt; tag around it. Allow me to demonstrate:</p><ol><li>Right click on about us, hit properties, and get the name of the image</li><li>In this case, it’s named “Divas_06.jpg”. In the future, it may be a good idea to rename all of the images in your<br
/> navigation menu to make better sense to you, but for the purpose of this project it is not necessary.  Now, open the code for the web page, and find that image. There are a few things you need to do. Notice the ALT tag on the image? You should fill this in with relevant content for a few reasons: search engines like it, it is easier for the visually impaired to use their handicap software to know what the image is, and it is also good etiquette for future web designers to take over your code. You also need to add a zero pixel border around the image, otherwise it will default to a one pixel border when you add the &lt;a&gt; tag.</li></ol><p>Before:</p><blockquote><p>&lt;td&gt;&lt;img src=&#8221;images/Divas_06.jpg&#8221; width=&#8221;99&#8243; height=&#8221;62&#8243; alt=&#8221;"&gt;&lt;/td&gt;</p></blockquote><p>After:</p><blockquote><p>&lt;td&gt;&lt;a href=&#8221;about.html&#8221;&gt;&lt;img src=&#8221;images/Divas_06.jpg&#8221; width=&#8221;99&#8243; height=&#8221;62&#8243; border=&#8221;0&#8243; alt=&#8221;About Us Page&#8221;&gt;&lt;/a&gt;&lt;/td&gt;</p></blockquote><p>Now, do these to all of the images in the navigation menu so it looks like this:</p><blockquote><p>&lt;td&gt;&lt;a href=&#8221;events.html&#8221;&gt;&lt;img<br
/> src=&#8221;images/Divas_07.jpg&#8221; width=&#8221;63&#8243;<br
/> height=&#8221;62&#8243; border=&#8221;0&#8243; alt=&#8221;Events<br
/> Page&#8221;&gt;&lt;/a&gt;&lt;/td&gt;<br
/> &lt;td&gt;&lt;a href=&#8221;members.html&#8221;&gt;&lt;img<br
/> src=&#8221;images/Divas_08.jpg&#8221; width=&#8221;113&#8243;<br
/> height=&#8221;62&#8243; border=&#8221;0&#8243; alt=&#8221;Members Only<br
/> Page&#8221;&gt;&lt;/a&gt;&lt;/td&gt;<br
/> &lt;td&gt;&lt;a href=&#8221;contact.html&#8221;&gt;&lt;img<br
/> src=&#8221;images/Divas_09.jpg&#8221; width=&#8221;87&#8243;<br
/> height=&#8221;62&#8243; border=&#8221;0&#8243; alt=&#8221;Contact Us<br
/> Page&#8221;&gt;&lt;/a&gt;&lt;/td&gt;</p></blockquote><p>Also, since we’ve added a style to the &lt;p&gt; tag and the &lt;h1&gt; tag, lets insert an &lt;h1&gt; to demonstrate where the title of the page is located at.</p><blockquote><p>&lt;h1&gt;Title of Page&lt;/h1&gt;</p></blockquote><p>That there is the basics of taking your Adobe Photoshop design template and turning it into an entire web page.</p> ]]></content:encoded> <wfw:commentRss>http://www.ajmcclary.com/making-a-website-template-with-all-the-fixins.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Slicing in Photoshop and Preparing for Coding</title><link>http://www.ajmcclary.com/slicing-in-photoshop-and-preparing-for-coding.html</link> <comments>http://www.ajmcclary.com/slicing-in-photoshop-and-preparing-for-coding.html#comments</comments> <pubDate>Sun, 02 Dec 2007 23:41:30 +0000</pubDate> <dc:creator>A.J. McClary</dc:creator> <category><![CDATA[Web Design]]></category> <category><![CDATA[Adobe Photoshop]]></category> <category><![CDATA[HTML]]></category><guid
isPermaLink="false">http://www.amazingdesignsecrets.com/slicing-in-photoshop-and-preparing-for-coding.html</guid> <description><![CDATA[Now that you’ve built a website in your graphics editor, the last step you need to take within your editor is to make a web page out of the layout you’ve created. This is an important step toward getting your content ready for coding in the next book. Adobe Photoshop and Gimp both have different [...]]]></description> <content:encoded><![CDATA[<p>Now that you’ve built a website in your graphics editor, the last step you need to take within your editor is to make a web page out of the layout you’ve created. This is an important step toward getting your content ready for coding in the next book. Adobe Photoshop and Gimp both have different ways of achieving this. Guillotine is an extension to GIMP, which you will have to download and install first, that allows you to slice your design into multiple images that you can place into a page. Here is Adobe Photoshop and the GIMP ways of accomplishing this:<span
id="more-63"></span></p><p><strong>Adobe Photoshop</strong></p><ol><li> Open your document, select the slice tool on the left toolbox and begin to draw a slice onto the image as seen below:<a
rel="nofollow" href="http://cdn.ajmcclary.com/wp-content/uploads/2007/12/slicing1.png" title="Screenshot of Adobe Photoshop’s Slicing 1"><img
src="http://cdn.ajmcclary.com/wp-content/uploads/2007/12/slicing1.png" style="border-color: black" alt="Screenshot of Adobe Photoshop’s Slicing 1" height="303" vspace="5" width="400" /></a></li><li>Continue slicing until you have a separate image for every element of the web page. I recommend that your entire body, however, is part of one slice because we can replace that slice with actual HTML text later on in the book.<a
rel="nofollow" href="http://cdn.ajmcclary.com/wp-content/uploads/2007/12/slicing2.png" title="Screenshot of Adobe Photoshop’s Slicing 2"><img
src="http://cdn.ajmcclary.com/wp-content/uploads/2007/12/slicing2.png" style="border-color: black" alt="Screenshot of Adobe Photoshop’s Slicing 2" height="291" vspace="5" width="400" /></a></li><li>It is a good rule of thumb to divide your image into as many as possible, which will increase your web pages browser load time. The final step is very easy, simple go to “File”, “Save for Web”, select the format you want (I recommend choosing a GIF at High Quality, but it really depends on your preference of quality), and select “Save”.<a
rel="nofollow" href="http://cdn.ajmcclary.com/wp-content/uploads/2007/12/slicing3.png" title="Screenshot of Adobe Photoshop’s Slicing 3"><img
src="http://cdn.ajmcclary.com/wp-content/uploads/2007/12/slicing3.png" style="border-color: black" alt="Screenshot of Adobe Photoshop’s Slicing 3" height="305" vspace="5" width="400" /></a></li><li>Select “Save as Type” and choose “HTML and Images”, name your files something appropriate (in my case it’s “divas.html”), and hit “save”.</li><li>Open your file (where ever you saved it, I recommend making a folder like /divas/divas.html to work in) in your web browser.</li></ol><p>Wasn&#8217;t that simple? In just a few minutes we were able to slice an entire website and render it in our web browser.</p> ]]></content:encoded> <wfw:commentRss>http://www.ajmcclary.com/slicing-in-photoshop-and-preparing-for-coding.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Moving Your Design to the Computer</title><link>http://www.ajmcclary.com/moving-your-design-to-the-computer.html</link> <comments>http://www.ajmcclary.com/moving-your-design-to-the-computer.html#comments</comments> <pubDate>Sun, 02 Dec 2007 20:27:05 +0000</pubDate> <dc:creator>A.J. McClary</dc:creator> <category><![CDATA[Web Design]]></category> <category><![CDATA[Adobe Photoshop]]></category><guid
isPermaLink="false">http://www.amazingdesignsecrets.com/moving-your-design-to-the-computer.html</guid> <description><![CDATA[Now that you’ve learned the basics of graphic design and what your graphics editor is capable of, you are now ready to begin moving the idea that you’ve put together in Chapter 2 to good use. As I’ve described before, a website is developed in parts: a navigation menu, header, body, and footer (in whatever [...]]]></description> <content:encoded><![CDATA[<p>Now that you’ve learned the basics of graphic design and what your graphics editor is capable of, you are now ready to begin moving the idea that you’ve put together in Chapter 2 to good use. As I’ve described before, a website is developed in parts: a navigation menu, header, body, and footer (in whatever layout you chose to use). Here, I’m going to walk you through building a design for a client of mine.<span
id="more-57"></span></p><ol><li>Create a new file and select the preset resolution to 800 x 600.</li><li>When using Gimp, the instructions are exactly the same: Select File, New, and set your width to 800 and your height to 600.)<a
rel="nofollow" href="http://cdn.ajmcclary.com/wp-content/uploads/2007/12/design1.png" title="Screenshot of Adobe Photoshop’s Design 1"><img
src="http://cdn.ajmcclary.com/wp-content/uploads/2007/12/design1.png" style="border-color: black" alt="Screenshot of Adobe Photoshop’s Design 1" height="304" vspace="5" width="400" /></a></li><li>Choose a background color. In this case, I’m going to choose black. To do this, add a new layer, choose the paint bucket tool, select the color black, and pour that color on to the screen. It might be a good idea to lock the layer once you’ve poured the color on to it. The lock feature is pointed to in the image below:<br
/> <a
rel="nofollow" href="http://cdn.ajmcclary.com/wp-content/uploads/2007/12/design2.png" title="Screenshot of Adobe Photoshop’s Design 2"><img
src="http://cdn.ajmcclary.com/wp-content/uploads/2007/12/design2.png" style="border-color: black" alt="Screenshot of Adobe Photoshop’s Design 2" height="308" vspace="5" width="400" /></a></li><li>The next step is to create the logo we spoke earlier in the book. My client had photo in mind of a woman singing beside her organization’s name. I found the picture on a white background on Boxed Art. I added a new layer, clicked File, place, and chose the file I downloaded, and I dropped the emblem onto the layer I just created. I selected the background using the Magic Wand tool and I hit delete. This made the white background transparent so it looks nice on my black background. I then used the text tool to type “Company Name ” on a new layer and “Company Logo ” on a second layer. I moved the text around to form a nice logo, and I added blending options to all of my layers (notice the gradient).<a
rel="nofollow" href="http://cdn.ajmcclary.com/wp-content/uploads/2007/12/design3.png" title="Screenshot of Adobe Photoshop’s Design 3"><img
src="http://cdn.ajmcclary.com/wp-content/uploads/2007/12/design3.png" style="border-color: black" alt="Screenshot of Adobe Photoshop’s Design 3" height="304" vspace="5" width="400" /></a></li><li>The next step is to create your navigation menu. While there are many different ways to do this, and it’s up to your creativity to make it any way you’d like, I chose to use the horizontal text tool and type in “About Us”, “Events”, “Members Only”, and “Contact Us”. I used the blending options tool to create the drop shadow you see below:<br
/> <a
rel="nofollow" href="http://cdn.ajmcclary.com/wp-content/uploads/2007/12/design4.png" title="Screenshot of Adobe Photoshop’s Design 4"><img
src="http://cdn.ajmcclary.com/wp-content/uploads/2007/12/design4.png" style="border-color: black" alt="Screenshot of Adobe Photoshop’s Design 4" height="310" vspace="5" width="400" /></a></li><li>Add your body and test images and position in an appropriate way for your design. I used the text tool and changed the anti-aliasing method to “none”. This setting is located on the top menu when using the text tool and will replicate what your text will look like on the web.<a
rel="nofollow" href="http://cdn.ajmcclary.com/wp-content/uploads/2007/12/design5.png" title="Screenshot of Adobe Photoshop’s Design 5"><img
src="http://cdn.ajmcclary.com/wp-content/uploads/2007/12/design5.png" style="border-color: black" alt="Screenshot of Adobe Photoshop’s Design 5" height="301" vspace="5" width="400" /></a></li><li>Finally, add any finishing touches you have to make the design perfect for you. I recommend using stock art from Boxed Art, or you can also use other alternatives as well. <a
href="http://www.boxedart.com/cgi-bin/affiliates/clickthru.cgi?id=amazingdesignsecrets" target="_blank">Boxed Art</a><a
href="http://www.boxedart.com/cgi-bin/affiliates/clickthru.cgi?id=amazingdesignsecrets" target="_blank">,</a> from my experience, is the best investment you can make to get an unlimited stock of royalty free images at an affordable price.</li></ol><blockquote><p
align="center"><strong>Design Secret</strong></p><p><strong><a
href="http://www.boxedart.com/cgi-bin/affiliates/clickthru.cgi?id=amazingdesignsecrets" target="_blank">Boxed Art -</a></strong> There is a great secret in the web design world and I’m going to share it with you: “most web designers DO NOT create their designs on their own, they have help”. I’ve already introduced you to a few secrets, but Boxed Art— sells a large assortment of stock art (for a small price).</p></blockquote><blockquote><p
align="center"><strong>Dream Template</strong></p><p><strong><a
href="http://www.tkqlhce.com/click-2406654-10459977" target="_blank">Dream Template -</a></strong> Dream Template is a wonderful service which allows you to download an unlimited number of pre-made web designs for a flat rate. It is highly recommended doing this, especially for beginners because it will give you the opportunity to develop web designs based off of already created material. This method allows you to drag and drop your own content into a great design which will save you time and money. Give it a try!</p></blockquote><blockquote><p
align="center"><strong>Stock.XCH</strong></p><p><strong><a
href="http://www.sxc.hu/" target="_blank">Stock.XCH -</a></strong> Stock.XCH is another great tool which web designers use and it’s completely free to use. There you will find thousands of royalty free pictures from independent photographers that you can use on your website and advertising campaign.</p></blockquote> ]]></content:encoded> <wfw:commentRss>http://www.ajmcclary.com/moving-your-design-to-the-computer.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Adobe Photoshop Tutorial</title><link>http://www.ajmcclary.com/adobe-photoshop-tutorial.html</link> <comments>http://www.ajmcclary.com/adobe-photoshop-tutorial.html#comments</comments> <pubDate>Sun, 02 Dec 2007 19:16:30 +0000</pubDate> <dc:creator>A.J. McClary</dc:creator> <category><![CDATA[Web Design]]></category> <category><![CDATA[Adobe Photoshop]]></category> <category><![CDATA[Graphic Design]]></category><guid
isPermaLink="false">http://www.amazingdesignsecrets.com/adobe-photoshop-tutorial.html</guid> <description><![CDATA[Now that you have a graphics editor installed on your computer whether it is Adobe Photoshop (which I will be using in this book) or GIMP (the OpenSource solution), I would like to guide you on a journey to the basics in graphic design. Building a design is actually easy, but there are tools that [...]]]></description> <content:encoded><![CDATA[<p>Now that you have a graphics editor installed on your computer whether it is Adobe Photoshop (which I will be using in this book) or GIMP (the OpenSource solution), I would like to guide you on a journey to the basics in graphic design. Building a design is actually easy, but there are tools that designers use to make their work more interoperable, editable, and practical. These tools include layers, channels, paths and shapes, brushes, patterns, and gradients. As we build a simple graphic design, I will introduce you to all of these important features, which will help you become the best graphic designer you can be.<span
id="more-53"></span><u></u></p><p><u>Videos for this entry will soon be available in the videos section of this website. I have created all of the videos, it&#8217;s just going to take me a little while to get them in a format for you to download and watch them. I have videos for every single topic in this section.</u></p><p><a
href="http://cdn.ajmcclary.com/wp-content/uploads/2007/12/layers_panel.png" rel="nofollow" title="Screenshot of Adobe Photoshop’s Layers Panel"><img
src="http://cdn.ajmcclary.com/wp-content/uploads/2007/12/layers_panel-134x150.png" style="border-color: black" alt="Screenshot of Adobe Photoshop’s Layers Panel" align="right" height="128" width="51" /></a><strong>Introduction to Layers</strong></p><p>Do you remember in grade school when a teacher had an overhead projector with transparencies? Layers work the same way. The rule of thumb is that with every element you put in your design should include an individual layer that corresponds to it. I have supplied a video to demonstrate how this is done. The example on the right is using Adobe Photoshop. If you are using The GIMP, your layers panel will look a little bit different, but is essentially the in the same place and the same concept.</p><p>Graphics editors come with predefined shapes, which we call paths. They include circles, squares, and lines which are easy to draw in your editor. Notice to the left of your graphics editor (in both Photoshop and GIMP) a set of tools? There you will find all of the shapes which we will be working with in this course. Here is st of all of those tools in Adobe Photoshop:</p><p
align="center"><img
src="http://cdn.ajmcclary.com/wp-content/uploads/2007/12/photoshop_toolbar.png" style="border-color: black" alt="Screenshot of Adobe Photoshop’s Toolbar" height="492" width="460" /></p><blockquote><p><strong>Tool Description</strong><br
/> a) Rectangular Marquee – Allows you to select certain elements or layers that already exist. Practice this tool by adding a layer, use the paint bucket tool (q) and pour the color on to that layer. Now take the rectangle marquee, make a selection of a piece of the document and hit the delete key.</p><p>b) Lasso – Using the same method you did with the rectangular marquee, draw a shape on your colored layer and hit delete. You’ll notice that the shape you drew is now transparent.</p><p>c) Crop – Just as you did in (a) and (b), pour a color onto a new layer. Select the crop tool and draw a square somewhere on the layer. You have the option to resize this crop however you’d like. Once you’re ready to crop, hit the return key or select the check box. Video Available Crop</p><p>d) Healing Brush – The healing brush find comparable pixels in a photograph and will repair older photos with a drag of the mouse. If you’d like to experiment with this, open an old photo, select the healing brush tool, click your mouse on the desired spots and you will notice the repairs taking place.</p><p>e) Clone Stamp – Similar to the healing brush, the clone stamp is also used to repair old photographs. Hold the “alt” key to make a selection, and then drag your curser on elsewhere on the photograph.</p><p>f) Eraser – The eraser tool removes a selection from the layer.</p><p>g) Blur – When you click on a layer using this tool, you are able to blur your selection. This is especially useful when removing unwanted objects while still maintaining a nice look and feel.</p><p>h) Path Selection – When working with Paths and Shapes, as we discussed earlier, the Path selection allows you to</p><p>i) Pen – The pen tool allows you to create custom vector shapes and paths.</p><p>j) Note – Allows you to add custom notes and comments to your work. This can serve as a reminder to future updates. Watch this video to see exactly how this is done.</p><p>k) Hand – The hand allows you to move your perspective around within a window. For example, Zoom (v) in all the way to 50%, choose the hand tool and watch how you are able to navigate within your window.</p><p>l) Move – use this tool to move the layer you created in (a) around the screen.</p><p>m) Magic Wand – This allows you to make a selection of colors/similarities within your image. It also allows you to easily select layers and their content.</p><p>n) Slice – Allows you to slice your image into multiple images. This is especially useful in web design because our goal is to get our design into as many individual images as possible for HTML coding. This will be covered more in chapter 10.</p><p>o) Brush – Allows you to paint freehand onto a layer. Add a new layer, select the brush tool, and then select a color from the color swatches and begin to draw.</p><p>p) History Brush – This tool allows you to apply the brush tool to your history panel.</p><p>q) Paint bucket – This tool allows you to pour a color or patter onto a layer. If you hold down the paint buck tool in the toolbar, you can also select the gradient tool (as shown in the picture above) and you can drag a gradient onto your layer.</p><p>r) Dodge – Will brighten an image when selected. The other option is to select “Burn”, which will darken the image selected.</p><p>s) Text – This will allow you to add text to your image.</p><p>t) Rectangle – This is a shape tool that allows you to draw a perfect vector rectangle onto a layer. It is not necessary, however, to add a new layer because the tool will do this for you, but if you would like to draw more than one shape, it is recommended that you add a new layer each time. Watch this video to see exactly how this is done.</p><p>u) Eye dropper – this tool allows you to select a color and add it to your color swatches for further use. Try opening your favorite photograph, and use the eye dropper to find a color and add it to your palette.</p><p>v) Zoom – This tool allows you to zoom into your document and see things more closely. Watch this video to see exactly how this is done.</p><p>w) Color Swatches – these are the colors you are currently working with. The color on top is the foreground and the color behind it is the background.</p><p>x) Modes – These tools allow you to easily create a mask. This allows you to get perspective in your designs. y) Screen Views – Allows you to view your design in standard or full screen.</p><p>z) Switch to Image Ready – allows you to edit your design in Image Ready (which we will not cover in this course)</p></blockquote><p><strong>Brushes</strong></p><p><a
href="http://cdn.ajmcclary.com/wp-content/uploads/2007/12/brushes.png" rel="nofollow" title="Screenshot of Adobe Photoshop’s Brushes"><img
src="http://cdn.ajmcclary.com/wp-content/uploads/2007/12/brushes-150x150.png" style="border-color: black" alt="Screenshot of Adobe Photoshop’s Brushes" align="right" height="128" width="105" /></a>When working with any brushes (including the eraser tool) it is important to recognize the power of your brush size and its intensity. Notice, on the right, when the brush tool is selected you have the option to change brush settings? Depending on the size of your design, you may want to change the diameter of the brush you’re working with. It will help you be much more precise in drawing (or erasing) pieces of your design. You can also change the hardness of your brush so that the effect will blend in easier with the rest of your design. I recommend choosing one of the pre-chosen templates that are in the picture above.</p><p><strong>Patterns</strong></p><p>Patterns are another technology which will help you tremendously in the design process. Notice, when you have selected the paint bucket tool, the advanced properties allows you to choose a pattern instead of a color??</p><p><strong>Gradients</strong></p><p>Gradients are another wonderful way to pour color and life into your design. Simply go to the toolbox and select the gradient tool. It is located in the same box as the paint bucket tool, so you may have to hold down the paint bucket tool (and more tools will appear) and select the gradient function. In the top menu bar, double click on the gradient scheme you see at the top and the gradient editor will appear. Here, you can alter gradients and choose from the colors that are currently in your palette (background and foreground).</p><p><strong>Blending Options</strong></p><p>Blending options are another way to expand upon your knowledge of layers. I have included a video to explain how to blend layers together and some exercises that will help you accomplish great designs by the process of experimentation. Watch this video to see exactly how this is done.</p><p>Congratulations, you’ve just completed a basic course in graphic design. You are now ready to begin designing an actual website.</p> ]]></content:encoded> <wfw:commentRss>http://www.ajmcclary.com/adobe-photoshop-tutorial.html/feed</wfw:commentRss> <slash:comments>4</slash:comments> </item> </channel> </rss>
<!-- Served from: www.ajmcclary.com @ 2012-02-07 07:10:49 by W3 Total Cache -->
