I'm looking for a framework or library to use the browser as a 2D "drawing" tool.

Acctually drawing is not the right word. It should be a adding, removing and moving around of 2D objects and images on a canvas. The objects should be graphically connectable. So - kind a visio in a browser

I guess it's a bit to much for a javascript library like dojo or prototype but what about a flash framework like flex or openlaszolo?

Thanks!

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

Most modern browsers now support the <canvas> tag in HTML5, which does pretty much what you're asking for. You can draw directly onto it using Javascript. Also in most modern browsers is support for the SVG graphic format, which again can be manipulated via Javascript to do some very funky effects. The difference between canvas and SVG is that canvas is for bitmap graphics and SVG is vectors. But both are good for 2D drawing.

If you need a library or framework on top of that, you could try something like Raphael, which is a good JS library for drawing vector graphics. It even supports older versions of Explorer, which is a bonus. (if SVG isn't available it falls back to VML).

link|improve this answer
Raphael is incredibl! – myborobudur Sep 16 '10 at 9:35
feedback

iLog Exlixir offers some graphing components which would probably help.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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