3

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

Michael
  • 7,248
  • 5
  • 56
  • 81

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
  • 21
  • 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
  • 191,086
  • 39
  • 207
  • 222
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,655
  • 7
  • 33
  • 45
1

Refer to this question.

Community
  • 1
  • 1
Zach
  • 23,936
  • 9
  • 41
  • 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
  • 4,611
  • 1
  • 25
  • 29