up vote 3 down vote favorite
share [g+] share [fb]

What's the best javascript framework for drawing (lines, curves whatnot) on images?

link|improve this question
feedback

closed as not constructive by Jeff Atwood Sep 12 '11 at 11:55

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

5 Answers

jQuery has several plugins available for doing graphics. Raphael is a plugin that uses SVG (for Firefox and other browsers that support SVG), and VML for the IE products. In addition, jQuery provides a great architecture for javascript projects with plenty of support and plug-ins.

Raphael is available here: http://raphaeljs.com/index.html

jQuery is available here: http://jquery.com/

link|improve this answer
feedback

Processing

var p = Processing(CanvasElement);
p.size(100, 100);
p.background(0);
p.fill(255);
p.ellipse(50, 50, 50, 50);
link|improve this answer
feedback

Take a look at this library that is a jquery plugin: http://www.openstudio.fr/Library-for-simple-drawing-with.html

link|improve this answer
feedback

Refer to this question.

link|improve this answer
feedback

You can create "images" using javascript's flot library.

It's on google code: flot
And requires jQuery

Here's an example, how a graph might look like

link|improve this answer
feedback