Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Javascript drawing library? [closed]

Any suggestion for a JavaScript interactive drawing library? Just need to draw lines, polygons, texts of different colors. IE/Firefox/Opera/Safari compatible. ­­­­­­­­­­­­­­­­­­­­­­­­­­

like image 825
st. Avatar asked Sep 18 '08 20:09

st.


People also ask

What is Paperjs?

Paper. js — The Swiss Army Knife of Vector Graphics Scripting. Paper. js is an open source vector graphics scripting framework that runs on top of the HTML5 Canvas.

Can you draw with JavaScript?

Steps for drawing a line in JavaScript First, create a new line by calling the beginPath() method. Second, move the drawing cursor to the point (x,y) without drawing a line by calling the moveTo(x, y) . Finally, draw a line from the previous point to the point (x,y) by calling the lineTo(x,y) method.


1 Answers

Raphael is pretty cool for that, and works across browsers since it uses VML (for MSIE) and SVG (for everything else).

like image 188
Dan Avatar answered Sep 28 '22 01:09

Dan