Best javascript framework for drawing/showing images? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T21:38:39Z http://stackoverflow.com/feeds/question/109149 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/109149/best-javascript-framework-for-drawing-showing-images 3 Best javascript framework for drawing/showing images? Howard Soro 2008-09-20T19:53:18Z 2008-09-20T20:16:25Z <p>What's the best javascript framework for drawing (lines, curves whatnot) on images?</p> http://stackoverflow.com/questions/109149/best-javascript-framework-for-drawing-showing-images/109166#109166 0 Answer by John Millikin for Best javascript framework for drawing/showing images? John Millikin 2008-09-20T20:00:07Z 2008-09-20T20:00:07Z <p><a href="http://ejohn.org/blog/processingjs/" rel="nofollow">Processing</a></p> <pre><code>var p = Processing(CanvasElement); p.size(100, 100); p.background(0); p.fill(255); p.ellipse(50, 50, 50, 50); </code></pre> http://stackoverflow.com/questions/109149/best-javascript-framework-for-drawing-showing-images/109168#109168 1 Answer by SaaS Developer for Best javascript framework for drawing/showing images? SaaS Developer 2008-09-20T20:00:26Z 2008-09-20T20:00:26Z <p>Take a look at this library that is a jquery plugin: <a href="http://www.openstudio.fr/Library-for-simple-drawing-with.html" rel="nofollow">http://www.openstudio.fr/Library-for-simple-drawing-with.html</a></p> http://stackoverflow.com/questions/109149/best-javascript-framework-for-drawing-showing-images/109174#109174 0 Answer by Zach for Best javascript framework for drawing/showing images? Zach 2008-09-20T20:02:35Z 2008-09-20T20:02:35Z <p>Refer to <a href="http://stackoverflow.com/questions/96486/javascript-drawing-library#96509">this question</a>.</p> http://stackoverflow.com/questions/109149/best-javascript-framework-for-drawing-showing-images/109175#109175 0 Answer by michal kralik for Best javascript framework for drawing/showing images? michal kralik 2008-09-20T20:02:42Z 2008-09-20T20:02:42Z <p>You can create "images" using javascript's flot library.</p> <p>It's on <a href="http://code.google.com/p/flot/" rel="nofollow">google code: flot</a><br /> And requires <a href="http://www.jquery.com/" rel="nofollow">jQuery</a></p> <p>Here's an example, how a <a href="http://people.iola.dk/olau/flot/examples/graph-types.html" rel="nofollow">graph might look like</a></p> http://stackoverflow.com/questions/109149/best-javascript-framework-for-drawing-showing-images/109234#109234 3 Answer by mistrmark for Best javascript framework for drawing/showing images? mistrmark 2008-09-20T20:16:25Z 2008-09-20T20:16:25Z <p>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.</p> <p>Raphael is available here: <a href="http://raphaeljs.com/index.html" rel="nofollow">http://raphaeljs.com/index.html</a></p> <p>jQuery is available here: <a href="http://jquery.com/" rel="nofollow">http://jquery.com/</a></p>