Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Why do we need the html5 canvas element, when the same can be achieved through embedded svg?

share|improve this question

7 Answers

up vote 31 down vote accepted

SVG and canvas aren't really interchangeable technologies. SVG is a type of retained mode graphics where everything is drawn from a rather abstract model (the SVG document). Canvas on the other hand is a kind of immediate mode graphics, where there is no model and the client (JavaScript) must take care of redrawing, animations etc.

share|improve this answer
6  
Jennifer Yu says SVG is great for high resolution and Canvas is for fast animation. She recommends using both, one on top of another in this video from Mix 11: media.ch9.ms/ch9/FDB1/595AD4A8-9399-439C-840A-9EAF0092FDB1/… – Dr. Zim May 14 '11 at 17:39

SVG is a markup language for vector graphics and has DOM. This makes it very easy to alter the content after its creation.

Canvas is a painting surface just like MS Paint without an undo button. You cannot alter the content. You only can overpaint it. It is very performant because the browser does not need to handle a complete DOM for the image. And there is a possibility that canvas can handle 3D drawing in the future.

share|improve this answer

http://people.mozilla.com/~vladimir/xtech2006/ has nice comparison.

With canvas you don't have to deal with the DOM, which leads to faster and easier to write code. SVG is a mess as a specification, too...

share|improve this answer
4  
You've got some link rot here.. is there an alternate link? – Tim Post Nov 2 '11 at 9:27
@TimPost: No, but someone at mozilla might have. This presentation is linked from developer.mozilla.org/en/XTech_2006_Presentations ... – Nickolay Nov 4 '11 at 13:28

an illustration: My blog engine (blogger) doesn't support SVG (it's not a XHTML document). I wrote a tool converting SVG to the canvas element: http://plindenbaum.blogspot.com/2009/11/tool-converting-svg-to-canvas_22.html

share|improve this answer

Here is an explanation of how to parse a simple svg and draw it on a canvas..

http://www.ikeralbeniz.net/2010/11/03/jugando-con-html5-canvas-y-svg-i/ http://www.ikeralbeniz.net/2010/11/04/jugando-con-html5-canvas-y-svg-ii/

in further posts the svg parser will be completed with transparencies and gradients

share|improve this answer
I forgotten to say that the posts are in spanish but you can get the full example code here: ikeralbeniz.net/wp-content/uploads/2010/11/test.html – iker Nov 4 '10 at 21:28

you might also find this comparison useful: http://dev.opera.com/articles/view/svg-or-canvas-choosing-between-the-two/

share|improve this answer

Because we then do not need to worry about what support such embedding ;-)

In this fashion the focus for application developpers is to adhere to standards and let the client designers do the same. and hence spare everyone to worry about plug-ins, versions, security setups, etc...

share|improve this answer
if the browser can support the svg namespace, like gecko does, you should not be worried either, with the additional fact that in SVG you actually have a DOM to manipulate. – Stefano Borini Oct 30 '09 at 15:31
1  
And if the browser supports HTML5 but not the SVG namespace, like IE probably will? – ceejayoz Oct 30 '09 at 15:40
Just use SVGWeb for IE, it's really quite easy. code.google.com/p/svgweb – Erik Dahlström Oct 30 '09 at 16:56
2  
So in the end we end up having two techniques to do basically the same thing just because one browser is lagging behind in the innovation race ? – Stefano Borini Oct 30 '09 at 18:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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