Reputation: 11403
I have a web application which generate reports .
I want to allow these reports to be hand writable on the screen
.
I mean that i can write some notes or sign on those documents through the screen by Light Pen
.
I don't know where should i begin to implement something like that or the the start point to search from .
I want some searches and libraries to use .
Upvotes: -3
Views: 268
Reputation: 66641
In general speaking, the Canvas can be used to write on web page screen with a tablet or a mouse. Then you send that image on the server with a post back and save it.
read the details on how Creating an HTML5 canvas painting application
Here is an example, select the Pencil, and write on. http://devfiles.myopera.com/articles/649/example5.html
If you like to make it more complicate, then look at this library:
http://experiments.hertzen.com/jsfeedback/
is converting what you see on page into canvas (image) on the fly, then you can write on it as image, and then you can post back to the server.
Upvotes: 2