vote up 8 vote down star
8

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".

Which of the two should I choose?

Is there a good JS library built on top of them?

flag

67% accept rate
What kinds of things are you doing with it? Creating interactive and/or scalable objects, or just drawing static charts and stuff? – Kev Mar 10 at 20:02
Imagine a huge GO board, with many kinds of units and many users. All on-line and requires only the browser. – Itay Moav Sep 22 at 20:59

7 Answers

vote up 5 vote down check

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.

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.

Here are some articles comparing SVG and canvas drawing:

http://www.ernestdelgado.com/gmaps/canvas/ddemo1.html
http://www.borismus.com/canvas-vs-svg-performance/

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/

link|flag
vote up 2 vote down

One cool thing about SVG is you can use inline SVG. That is you can treat SVG elements as if they are XHTML elements and be able to manipulate them with JavaScript and CSS.

They are supported by

  • Firefox
  • Opera
  • Camino
  • (Chrome)

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.)

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.

link|flag
Great Link. Very Helpful. Thanks :) – Crimson yesterday
vote up 1 vote down

Those two are both going to be supported, because they have different purposes.

<canvas> is meant as a replacement for Flash and the like, to let you create rich applications.

SVG instead is another image format, which should be used like an image and have only basic interaction and movements.

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 <canvas> for a fancy voting element / game.)

link|flag
Why did someone downvote? Please leave a comment when you downvote. – the_drow Aug 11 at 8:56
I didn't downvote, but I'd have said the opposite: SVG is easier to make interactive since you can deal with elements and easily handle events, while Canvas is just a bitmap, much more like an image. – MSpreij Oct 18 at 13:46
@MSPreij: You are right, it's easier to implement basic interactive elements in SVG, but don't try anything complex for which it's easier to use a canvas element. If you haven't seen it yet, watch this introduction to canvas and svg: youtube.com/watch?v=siOHh0uzcuY&hl=de/… – gs Oct 18 at 17:49
vote up 6 vote down

The Raphael JavaScript framework John mentioned is the best I've come across. You could also use pure SVG and display it in IE using XSLT, as described by Sam Ruby. I've also used excanvas, which used to work with IE also. SitePont also had a post recently about the Lively Kernel, which uses SVG and JavaScript. Very cool, and I'm curious to see how that develops.

I prefer the SVG markup and tools (Illustrator, Inkscape, 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.

link|flag
Lively Kernel looks great :) I wasn't able to use it though, it made firefox freeze. – the_drow Aug 11 at 8:59
vote up 2 vote down

AFAIK, SVG has nothing to do with the (X)HTML standards, while <canvas> is included in the HTML5 specification draft. So, canvas might be more future proof.

As a curiosity, check out what Mozilla Labs did with canvas; Bespin.

link|flag
tnx, I am familiar with Bespin. – Itay Moav Feb 21 at 23:21
SVG is a W3C standard too. – PhiLho Feb 21 at 23:45
SVG is a W3C standard-yes. But it's a separate standard from any HTML dialect. There's no <SVG>-tag (or equiv). – Henrik Paul Feb 21 at 23:51
Yes there is. w3.org/TR/XHTMLplusMathMLplusSVG – Ant P Feb 22 at 0:07
Technically, Henrik is correct. However, you can embed additional markup types in XHTML (e.g. SVG, XForms, etc). – Ryan Riley Feb 23 at 19:29
show 1 more comment
vote up 1 vote down

you've ruled out Flex/Flash (and Silverlight) ? These may be better choices depending on your target and time frame.

link|flag
vote up 4 vote down

I've had good experiences with the Raphael JS framework, which uses SVG. I can't really comment on canvas, I'm afraid.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.