SVG vs CANVAS, where is the Web World going towards? - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T14:18:31Zhttp://stackoverflow.com/feeds/question/568136http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/568136/svg-vs-canvas-where-is-the-web-world-going-towards8SVG vs CANVAS, where is the Web World going towards? Itay Moav2009-02-20T03:10:51Z2009-08-11T06:49:32Z
<p>I need to pick one of those two technologies for an ongoing project of mine. I would prefer to pick the technology that is more maintained and in active development rather then choose a technology marked for "putting down".</p>
<p>Which of the two should I choose?</p>
<p>Is there a good JS library built on top of them?</p>
http://stackoverflow.com/questions/568136/svg-vs-canvas-where-is-the-web-world-going-towards/573879#5738794Answer by John McCollum for SVG vs CANVAS, where is the Web World going towards? John McCollum2009-02-21T23:06:54Z2009-02-21T23:06:54Z<p>I've had good experiences with the <a href="http://raphaeljs.com/" rel="nofollow">Raphael JS</a> framework, which uses SVG. I can't really comment on canvas, I'm afraid.</p>
http://stackoverflow.com/questions/568136/svg-vs-canvas-where-is-the-web-world-going-towards/573880#5738801Answer by Scott Evernden for SVG vs CANVAS, where is the Web World going towards? Scott Evernden2009-02-21T23:07:11Z2009-02-21T23:07:11Z<p>you've ruled out Flex/Flash (and Silverlight) ? These may be better choices depending on your target and time frame.</p>
http://stackoverflow.com/questions/568136/svg-vs-canvas-where-is-the-web-world-going-towards/573889#5738892Answer by Henrik Paul for SVG vs CANVAS, where is the Web World going towards? Henrik Paul2009-02-21T23:11:02Z2009-02-21T23:11:02Z<p>AFAIK, SVG has nothing to do with the (X)HTML standards, while <code><canvas></code> is <a href="http://dev.w3.org/html5/spec/Overview.html#the-canvas-element" rel="nofollow">included in the HTML5 specification draft</a>. So, canvas might be more future proof.</p>
<p>As a curiosity, check out what Mozilla Labs did with canvas; <a href="https://bespin.mozilla.com/" rel="nofollow">Bespin</a>.</p>
http://stackoverflow.com/questions/568136/svg-vs-canvas-where-is-the-web-world-going-towards/573891#5738915Answer by Ryan Riley for SVG vs CANVAS, where is the Web World going towards? Ryan Riley2009-02-21T23:14:06Z2009-02-21T23:19:27Z<p>The Raphael JavaScript framework John mentioned is the best I've come across. You could also use pure SVG and display it <a href="http://intertwingly.net/blog/2007/09/11/SVG-on-IE-via-Silverlight-Revisited" rel="nofollow">in IE using XSLT, as described by Sam Ruby</a>. I've also used <a href="http://code.google.com/p/explorercanvas/" rel="nofollow">excanvas</a>, which used to work with IE also. SitePont also had a <a href="http://www.sitepoint.com/blogs/2008/12/22/svg-is-the-future-of-application-development/" rel="nofollow">post</a> recently about the <a href="http://research.sun.com/projects/lively/" rel="nofollow">Lively Kernel</a>, which uses SVG and JavaScript. Very cool, and I'm curious to see how that develops.</p>
<p>I prefer the SVG markup and tools (Illustrator, <a href="http://www.inkscape.org/" rel="nofollow">Inkscape</a>, etc), as well as the ability to use the markup over the JavaScript code. Theoretically, you could use SVG with XForms or XHTML to create entire UI's, much like MXML or Silverlight's XAML, or even use XSLT to translate between different platforms. HTML5, while the likely successor to HTML4, is still not a full standard and no one knows for sure whether or not IE will ever have the canvas element.</p>
http://stackoverflow.com/questions/568136/svg-vs-canvas-where-is-the-web-world-going-towards/573908#5739081Answer by gs for SVG vs CANVAS, where is the Web World going towards? gs2009-02-21T23:25:44Z2009-02-21T23:25:44Z<p>Those two are both going to be supported, because they have different purposes.</p>
<p><code><canvas></code> is meant as a replacement for Flash and the like, to let you create rich applications.</p>
<p>SVG instead is another image format, which should be used like an image and have only basic interaction and movements.</p>
<p>So it really depends on what you want to accomplish. It's not hard to think of cases where both are used alongside in a website. (SVG for the logo / a picture gallery and <code><canvas></code> for a fancy voting element / game.)</p>
http://stackoverflow.com/questions/568136/svg-vs-canvas-where-is-the-web-world-going-towards/631907#6319075Answer by Robotsu for SVG vs CANVAS, where is the Web World going towards? Robotsu2009-03-10T19:30:27Z2009-03-10T19:30:27Z<p>I would personally recommend for you to choose Canvas. You are always able to get cross-browser support with exCanvas. SVG is a fine technology but in terms of who has the hot hand, Canvas is currently getting a lot of momentum building up with the HTML5 adoption underway in several A-grade, modern web browsers.</p>
<p>Another thing you may want to consider are the types of operations you will be doing with your technology of choice. VML and SVG are both vector-based, while canvas is a bitmapped system. This can translate differently in terms of scaling and performance.</p>
<p>Here are some articles comparing SVG and canvas drawing:</p>
<p><a href="http://www.ernestdelgado.com/gmaps/canvas/ddemo1.html" rel="nofollow">http://www.ernestdelgado.com/gmaps/canvas/ddemo1.html</a><br/>
<a href="http://www.borismus.com/canvas-vs-svg-performance/" rel="nofollow">http://www.borismus.com/canvas-vs-svg-performance/</a></p>
<p>All in all in just depends on what you are comfortable with and how you are using SVG or canvas. You're able to achieve the same types of operations with either technology, but at this point there are so many exciting things happening with canvas it's hard to ignore:
https://bespin.mozilla.com/</p>
http://stackoverflow.com/questions/568136/svg-vs-canvas-where-is-the-web-world-going-towards/1258763#12587631Answer by onsaito for SVG vs CANVAS, where is the Web World going towards? onsaito2009-08-11T06:49:32Z2009-08-11T06:49:32Z<p>One cool thing about SVG is you can use <strong><a href="http://wiki.svg.org/index.php?title=Inline%5FSVG" rel="nofollow">inline SVG</a></strong>. That is you can treat SVG elements as if they are XHTML elements and be able to manipulate them with JavaScript and CSS. </p>
<p>They are supported by</p>
<ul>
<li>Firefox</li>
<li>Opera</li>
<li>Camino</li>
<li>(Chrome)</li>
</ul>
<p>And it seems that you can make it work even with IE according to Sam Ruby web site mentioned above. (I'm a new user and post a maximum of one hyperlink.)</p>
<p>Note: One problem I had in the past with <canvas> element was to render text. (I used canvas in 2008.) Firefox added this capability, and it'll be added to HTML5. So, it'll be irrelevant in a future, but you may want to check if your target web browsers support this.</p>