Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to capture human signature [closed]

I am new to Android. I am developing an application that requires a user signature. How can I capture a signature in Android?

like image 846
ragu Avatar asked Jul 26 '11 17:07

ragu


People also ask

What is used to capture handwritten signatures?

Digitizer is a computer input device that receives analog information, such used to capture handwritten signatures and data or images from taped papers and records it digitally thereby converting it to digital format.

How do I capture a virtual signature?

Using a scanner for e-signature capture For this method of digital signature capture, sign a piece of paper several times. Use a dark, wide-tipped pen so the signature shows up well and you can pick your best version. Then scan your preferred signature. Save the scan as an image file, such as .

How do I take a signature on my Android?

If no signature has been previously stored on the device, tap Create Signature, or to replace an existing signature, tap Clear Saved Signature and re-tap > Create Signature. Tap to use your camera to capture an image of your signature. (You can also Hand draw a signature or tap to choose an image on your device.)


1 Answers

Your question is a little too broad. Try asking a question about a specific problem, not "how do I do something general". See the FAQ for more information about how to ask a question.

Here is a vague idea though:

  1. You'll want to have a canvas object that can allow the user to draw to the screen. Here is a link on SO about it. Android drawing a line to follow your finger

  2. Then you'll want to output that bitmap as a file: Save bitmap to location

like image 141
citizen conn Avatar answered Oct 04 '22 15:10

citizen conn