vote up 7 vote down star
7

Any suggestion for a JS interactive drawing library? Just need to draw lines, polygons, texts of different colors. IE/Firefox/Opera/Safari compatible.

flag

8 Answers

vote up 7 vote down

John Resig's Processing.js is a nice framework for that.

link|flag
vote up 6 vote down

Raphael is pretty cool for that, and works across browsers since it uses VML (for MSIE) and SVG (for everything else).

link|flag
Damn, you beat me to the punch ;) – Aeon Sep 18 '08 at 20:32
vote up 3 vote down

You can use the canvas object directly to draw in 2D. IE requires the excanvas library.

http://developer.mozilla.org/En/Drawing_Graphics_with_Canvas

link|flag
Canvas is the way to go for anything more than a few trivial boxes or lines. And excanvas works surprisingly well, at least on IE 7. – dgvid Sep 18 '08 at 20:36
Works great with IE6 too. – Prestaul Sep 18 '08 at 20:41
vote up 2 vote down

Try http://walterzorn.com/jsgraphics/jsgraphics_e.htm. It's the best I've found (without resorting to SVG) and works in most browsers without add-ins.

link|flag
That stuff (drawing by arranging HTML elements) doesn't scale particularly well, but it certainly works :) – Dan Sep 18 '08 at 20:39
True ... you certainly wouldn't build a CAD system this way, but it can do pretty complex drawings if you stick with orthogonal structures and images (lines, rectangles, etc) and spice them up a bit with images. Other drawing entities are built with multiple DIV elements each. – Steve Moyer Sep 18 '08 at 21:31
vote up 1 vote down

Drawing text with the canvas tag is a big pain. Your options are to use regular divs absolutely positioned in the right places, or find/write a font layout engine (example), or wait for a new standard to be implemented that lets you draw text. SVG deals with this much better.

In IE you have ExplorerCanvas to simulate the canvas API with IE's own VML markup. However, native VML can do text on a path and such things much like SVG. I think theoretically if you want complex text handling you'd want SVG and VML like the Raphael library that Dan mentioned.

You might also consider Flash for a moment before starting.

link|flag
In fact, VML supports text drawing natively, and the latest revisions of ExplorerCanvas have the text drawing methods recommended by the WHATWG ;) explorercanvas.blogspot.com – Fabien Ménager May 31 at 0:17
vote up 1 vote down

As mentioned above, canvas is the way you should go. IE doesn't support it natively, so you'll need to download ExCanvas to ensure cross-browser compatibility. I'd recommend looking at Ajaxian for some projects that use the canvas tag.

link|flag
vote up 0 vote down

Depending on how cross-browser you need to be and your goal of doing the output, you might look into the Canvas element and the related javascript.

Canvas)

link|flag
vote up 0 vote down

Checkout the jQuery Drawing plugin, and you can also look at the Mozilla Canvas reference and tutorial.

link|flag

Your Answer

Get an OpenID
or

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