I am writing a web based application using Ruby on Rails. In one of the forms the users would need to draw something with a mouse and label the object with some text. In short, I need a
- Simple paint like application on which I can draw with a mouse.
- Write simple text.
- Store the painted diagram as a file for future editing.
- Export the pained diagram as a gif/jpeg image.
An example can be found at http://charles-harvey.co.uk/examples/paint/. Here are my questions:
- Are there any RoR plugins that allow me to add a paint like object to a form?
- If not are there any JQuery plugins that have a simple paint like application that I can include in rails?
- Any more pointers?
I can write a simple canvas application, but I am on a very tight deadline and prefer to use something that is already tested.
PS: I found a link for such an application but forgot to bookmark it.