Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Best javascript framework for drawing/showing images? [closed]

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


2 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/

like image 66
mistrmark Avatar answered Apr 02 '26 13:04

mistrmark


Processing

var p = Processing(CanvasElement);
p.size(100, 100);
p.background(0);
p.fill(255);
p.ellipse(50, 50, 50, 50);
like image 32
John Millikin Avatar answered Apr 02 '26 14:04

John Millikin



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!