3

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

Michael
  • 8,362
  • 6
  • 61
  • 88

5 Answers5

3

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/

mistrmark
  • 4,349
  • 6
  • 22
  • 15
1

Processing

var p = Processing(CanvasElement);
p.size(100, 100);
p.background(0);
p.fill(255);
p.ellipse(50, 50, 50, 50);
John Millikin
  • 197,344
  • 39
  • 212
  • 226
1

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

SaaS Developer
  • 9,835
  • 7
  • 34
  • 45
1

Refer to this question.

Community
  • 1
  • 1
Zach
  • 24,496
  • 9
  • 43
  • 50
0

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

mike
  • 5,047
  • 2
  • 26
  • 32