vote up 1 vote down star

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

flag

79% accept rate

4 Answers

vote up 5 vote down check

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.

link|flag
vote up 0 vote down

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

link|flag
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 at 15:31
1  
And if the browser supports HTML5 but not the SVG namespace, like IE probably will? – ceejayoz Oct 30 at 15:40
Just use SVGWeb for IE, it's really quite easy. code.google.com/p/svgweb – Erik Dahlström Oct 30 at 16:56
1  
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 at 18:04
vote up 2 vote down

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

link|flag
vote up 3 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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