Best javascript framework for drawing/showing images? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T21:38:39Zhttp://stackoverflow.com/feeds/question/109149http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/109149/best-javascript-framework-for-drawing-showing-images3Best javascript framework for drawing/showing images?Howard Soro2008-09-20T19:53:18Z2008-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#1091660Answer by John Millikin for Best javascript framework for drawing/showing images?John Millikin2008-09-20T20:00:07Z2008-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#1091681Answer by SaaS Developer for Best javascript framework for drawing/showing images?SaaS Developer2008-09-20T20:00:26Z2008-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#1091740Answer by Zach for Best javascript framework for drawing/showing images?Zach2008-09-20T20:02:35Z2008-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#1091750Answer by michal kralik for Best javascript framework for drawing/showing images?michal kralik2008-09-20T20:02:42Z2008-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#1092343Answer by mistrmark for Best javascript framework for drawing/showing images?mistrmark2008-09-20T20:16:25Z2008-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>