views:

36

answers:

1

Whats the best approach to making a web application for drawing on and modifying an image? Should be able to draw on, add text etc. I have been hearing a lot about SVG, but is that a required download for the user to view the application then? Whats the best way to handle this? What language? etc. Thanks! Preferred: PHP jQuery javascript html css Thanks you!

A: 

Take a look at the HTML5 Canvas element:

http://diveintohtml5.org/canvas.html

You can draw on (over) the image as well as add text. No install required.

AndrewDotHay