<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>WebDeveloper.com - Graphics</title>
		<link>http://www.webdeveloper.com/forum/</link>
		<description>Discussion and technical support for creating and editing graphics for the web.</description>
		<language>en</language>
		<lastBuildDate>Sat, 18 May 2013 07:33:26 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.webdeveloper.com/forum/images/misc/rss.png</url>
			<title>WebDeveloper.com - Graphics</title>
			<link>http://www.webdeveloper.com/forum/</link>
		</image>
		<item>
			<title><![CDATA[Need some help re-creating a page, don't know how they did it...]]></title>
			<link>http://www.webdeveloper.com/forum/showthread.php?277827-Need-some-help-re-creating-a-page-don-t-know-how-they-did-it...&amp;goto=newpost</link>
			<pubDate>Sun, 12 May 2013 02:44:29 GMT</pubDate>
			<description>I have been doing a remodel on a website and saved the main page until the very last.  After looking through everything, I cannot figure out how the person did it. 
 
The image you view is of an art gallery, where the creator tried to make the homepage look just like her gallery.  So she wants me...</description>
			<content:encoded><![CDATA[<div>I have been doing a remodel on a website and saved the main page until the very last.  After looking through everything, I cannot figure out how the person did it.<br />
<br />
The image you view is of an art gallery, where the creator tried to make the homepage look just like her gallery.  So she wants me to update the wall images to match her gallery.  My problem is that I do not have a base, flat image that is just a naked gallery.  <br />
<br />
Sooo, I either need to be able to just cover the current images with the new ones, or re-create the page.  <br />
<br />
I look through the image and I can't figure out whether this person used PhotoShop to do this page or used another program.  The lighting and shadows of all the image contents are everywhere and look perfect, so I was thinking it was a program he used to do it, or he spent a lot of time in Photoshop...<br />
<br />
I need some help!  I don't have a clue how this page was made.<br />
<br />
thanks for the help in advance!<br />
<br />
<br />
<a rel="nofollow" href="http://bphundled.com/main_background_gallery.jpg" target="_blank"> <a href="http://bphundled.com/main_background_gallery.jpg" target="_blank">http://bphundled.com/main_background_gallery.jpg</a> </a></div>

 ]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?6-Graphics">Graphics</category>
			<dc:creator>phildogbph</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?277827-Need-some-help-re-creating-a-page-don-t-know-how-they-did-it...</guid>
		</item>
		<item>
			<title>SVG graphic scaling</title>
			<link>http://www.webdeveloper.com/forum/showthread.php?277783-SVG-graphic-scaling&amp;goto=newpost</link>
			<pubDate>Sat, 11 May 2013 04:02:06 GMT</pubDate>
			<description><![CDATA[The following creates an SVG display of 5 lines at a specific place on the screen. 
 
Code: 
--------- 
<svg xmlns="http://www.w3.org/2000/svg" 
 xmlns:xlink="http://www.w3.org/1999/xlink" 
 height="200" width="300" style="border:1px solid black"> 
  <line x1="0"  y1="10" x2="0"   y2="110"...]]></description>
			<content:encoded><![CDATA[<div>The following creates an SVG display of 5 lines at a specific place on the screen.<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot;<br />
&nbsp;xmlns:xlink=&quot;http://www.w3.org/1999/xlink&quot;<br />
&nbsp;height=&quot;200&quot; width=&quot;300&quot; style=&quot;border:1px solid black&quot;&gt;<br />
&nbsp; &lt;line x1=&quot;0&quot;&nbsp; y1=&quot;10&quot; x2=&quot;0&quot;&nbsp;  y2=&quot;110&quot; style=&quot;stroke-width:6; stroke:#ff0000;&quot;/&gt;<br />
&nbsp; &lt;line x1=&quot;20&quot; y1=&quot;20&quot; x2=&quot;120&quot; y2=&quot;50&quot; style=&quot;stroke-width:6; stroke:#00ff00;&quot;/&gt;<br />
&nbsp; &lt;line x1=&quot;30&quot; y1=&quot;30&quot; x2=&quot;140&quot; y2=&quot;100&quot; style=&quot;stroke-width:6; stroke:#0000ff;&quot;/&gt;<br />
&nbsp; &lt;line x1=&quot;40&quot; y1=&quot;40&quot; x2=&quot;150&quot; y2=&quot;150&quot; style=&quot;stroke-width:6; stroke:#006600;&quot;/&gt;<br />
&nbsp; &lt;line x1=&quot;75&quot; y1=&quot;25&quot; x2=&quot;200&quot; y2=&quot;25&quot; style=&quot;stroke-width:6; stroke:#006600;&quot;/&gt;<br />
&lt;/svg&gt;</code><hr />
</div> What I would like to know is:  Is it possible to make the hard coded values of x1,y1, x2,y2<br />
to be scaled to a world range?<br />
<br />
For example, if I define the &quot;world&quot; view to be 1000 wide an 800 high, <br />
and given the actual screen if 300 pixels wide by 200 pixels high,<br />
I could calculate the world positions on the screen as:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&lt;script&gt;<br />
var World = [1000,800];<br />
var Actual = [300,200];<br />
var x1 = 175;&nbsp; <br />
var y2 = 125;&nbsp; <br />
var x2 = 200;<br />
var y2 = 225;<br />
sx1 = x1 / World[0] * Actual[0];<br />
sy1 = y1 / World[1] * Actual[1];<br />
sx2 = x2 / World[0] * Actual[0];<br />
sy2 = y2 / World[1] * Actual[1];<br />
&lt;/script&gt;<br />
&lt;!-- following line does not work --&gt;<br />
&lt;line x1=sx1 y1=sy1 x2=sx2 y2=sy2 style=&quot;stroke-width:6; stroke:#006600;&quot;/&gt;</code><hr />
</div> I want to use real world numbers like feet, yards, meters, etc<br />
and scale them to the actual size of the graphics display<br />
but I don't know how to NOT hard code into the SVG tags.<br />
<br />
Is there a way to do this?</div>

 ]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?6-Graphics">Graphics</category>
			<dc:creator>JMRKER</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?277783-SVG-graphic-scaling</guid>
		</item>
		<item>
			<title>Which software is the best for graphics design?</title>
			<link>http://www.webdeveloper.com/forum/showthread.php?277613-Which-software-is-the-best-for-graphics-design&amp;goto=newpost</link>
			<pubDate>Wed, 08 May 2013 09:53:51 GMT</pubDate>
			<description>I learn graphics by adobe Photoshop cs but its have a lots of version but Which software is the best N comfortable of using? 
please share your view. 
Thank you.</description>
			<content:encoded><![CDATA[<div>I learn graphics by adobe Photoshop cs but its have a lots of version but Which software is the best N comfortable of using?<br />
please share your view.<br />
Thank you.</div>

 ]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?6-Graphics">Graphics</category>
			<dc:creator>dreamavenue</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?277613-Which-software-is-the-best-for-graphics-design</guid>
		</item>
		<item>
			<title>how creat .gif  animated image?</title>
			<link>http://www.webdeveloper.com/forum/showthread.php?277465-how-creat-.gif-animated-image&amp;goto=newpost</link>
			<pubDate>Mon, 06 May 2013 08:30:16 GMT</pubDate>
			<description>Hello guys, 
How can i create .gif animated image. its possible with Photoshop or not, please help me and share your suggestion.  
THanks.</description>
			<content:encoded><![CDATA[<div>Hello guys,<br />
How can i create .gif animated image. its possible with Photoshop or not, please help me and share your suggestion. <br />
THanks.</div>

 ]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?6-Graphics">Graphics</category>
			<dc:creator>noahwilson</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?277465-how-creat-.gif-animated-image</guid>
		</item>
		<item>
			<title>Photoshop CS6 Help!!!</title>
			<link>http://www.webdeveloper.com/forum/showthread.php?277423-Photoshop-CS6-Help!!!&amp;goto=newpost</link>
			<pubDate>Sun, 05 May 2013 10:29:52 GMT</pubDate>
			<description>Hello I am using Photoshop CS6. I wonder why when I type text the cursor the text goes from right to left? How to change it? It suppose to go from left to right.</description>
			<content:encoded><![CDATA[<div>Hello I am using Photoshop CS6. I wonder why when I type text the cursor the text goes from right to left? How to change it? It suppose to go from left to right.</div>

 ]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?6-Graphics">Graphics</category>
			<dc:creator>pauldmitchell13</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?277423-Photoshop-CS6-Help!!!</guid>
		</item>
		<item>
			<title>Best Info-Graphics to Improve Conversion Rates</title>
			<link>http://www.webdeveloper.com/forum/showthread.php?277391-Best-Info-Graphics-to-Improve-Conversion-Rates&amp;goto=newpost</link>
			<pubDate>Sat, 04 May 2013 09:09:46 GMT</pubDate>
			<description>Hi As Its Well Known that Nothing matters more to an ecommerce website than greater sales. While adverting and marketing can bring visitors, purchase depends entirely on conversion related elements.  
So Here I Share A Info-graphics that presents seven ideas to improve conversions and visitor...</description>
			<content:encoded><![CDATA[<div>Hi As Its Well Known that Nothing matters more to an ecommerce website than greater sales. While adverting and marketing can bring visitors, purchase depends entirely on conversion related elements. <br />
So Here I Share A Info-graphics that presents seven ideas to improve conversions and visitor engagement with the help of simple changes .<br />
<br />
This Info-graphic is Informative and Well Designed<br />
Topic :Ways to Improve Conversion and Visitor Engagement<br />
<br />
Please Review : INFO-GRAPHIC<br />
<br />
<a href="http://www.webdeveloper.com/forum/attachment.php?attachmentid=15525"  title="Name:  
Views: 
Size:  ">Attachment 15525</a><br />
<br />
<a rel="nofollow" href="http://www.fatbit.com/fab/7-proven-ways-to-improve-conversion-and-visitor-engagement-infographic/" target="_blank">For better Graphical Review Visit Site</a></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/jpg.gif" alt="File Type: jpg" />
	<a href="http://www.webdeveloper.com/forum/attachment.php?attachmentid=15525&amp;d=1367658389" target="_blank">Conversion Rate Optimization Tips.jpg&lrm;</a> 
(108.7 KB)
</li> 
			</ul>
			</fieldset>
	

	

	</div>
 ]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?6-Graphics">Graphics</category>
			<dc:creator>fandesign</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?277391-Best-Info-Graphics-to-Improve-Conversion-Rates</guid>
		</item>
		<item>
			<title>Image optimisation - lossless and lossy</title>
			<link>http://www.webdeveloper.com/forum/showthread.php?277139-Image-optimisation-lossless-and-lossy&amp;goto=newpost</link>
			<pubDate>Tue, 30 Apr 2013 09:09:19 GMT</pubDate>
			<description>Hi - I am looking for recommendations on an image optimization tool (lossless and lossy) that will accept GIF, PNG and JPEG files It should then crunch the files down and spit them back out in as small a file size as possible in their respective formats.</description>
			<content:encoded><![CDATA[<div>Hi - I am looking for recommendations on an image optimization tool (lossless and lossy) that will accept GIF, PNG and JPEG files It should then crunch the files down and spit them back out in as small a file size as possible in their respective formats.</div>

 ]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?6-Graphics">Graphics</category>
			<dc:creator>irnbru</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?277139-Image-optimisation-lossless-and-lossy</guid>
		</item>
		<item>
			<title>Using Older Visio Charts with New Browsers</title>
			<link>http://www.webdeveloper.com/forum/showthread.php?276651-Using-Older-Visio-Charts-with-New-Browsers&amp;goto=newpost</link>
			<pubDate>Sat, 20 Apr 2013 19:51:30 GMT</pubDate>
			<description><![CDATA[Hello, 
 
I am a new developer and not particularly familiar with the project I'm asking about but want to get some feedback regarding ideas at this point. 
 
There is an online chart with diagrams linked to other pages that was created with a very old version of MS Visio. The diagramsare no longer...]]></description>
			<content:encoded><![CDATA[<div>Hello,<br />
<br />
I am a new developer and not particularly familiar with the project I'm asking about but want to get some feedback regarding ideas at this point.<br />
<br />
There is an online chart with diagrams linked to other pages that was created with a very old version of MS Visio. The diagramsare no longer displaying parts of the charts (text or other elements) in newer browsers. <br />
<br />
Do you have ideas for fixes for this without buying an updated version of Visio?<br />
<br />
Thank you!</div>

 ]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?6-Graphics">Graphics</category>
			<dc:creator>Rhonda F</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?276651-Using-Older-Visio-Charts-with-New-Browsers</guid>
		</item>
		<item>
			<title>how/where to create animated GIFs ???</title>
			<link>http://www.webdeveloper.com/forum/showthread.php?276567-how-where-to-create-animated-GIFs&amp;goto=newpost</link>
			<pubDate>Thu, 18 Apr 2013 21:45:10 GMT</pubDate>
			<description><![CDATA[See previous post re Adobe Photoshop CS6 problems with animated GIFs. 
 
http://www.webdeveloper.com/forum/showthread.php?269779-damn-Adobe-Photoshop-CS6&highlight= 
 
Does anyone have suggestions about creating animated GIFs nowadays?  It used to be so simple.  My first animated GIF circa 200 was...]]></description>
			<content:encoded><![CDATA[<div>See previous post re Adobe Photoshop CS6 problems with animated GIFs.<br />
<br />
<a rel="nofollow" href="http://www.webdeveloper.com/forum/showthread.php?269779-damn-Adobe-Photoshop-CS6&amp;highlight=" target="_blank">http://www.webdeveloper.com/forum/sh...CS6&amp;highlight=</a><br />
<br />
Does anyone have suggestions about creating animated GIFs nowadays?  It used to be so simple.  My first animated GIF circa 200 was using Macromedia Fireworks.  I'd hate to have to re-learn that or another program, but Adobe has mucked up Photoshop CS6.</div>

 ]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?6-Graphics">Graphics</category>
			<dc:creator>auntnini</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?276567-how-where-to-create-animated-GIFs</guid>
		</item>
	</channel>
</rss>
