Capturing a signature for android using a phone saver

I want to run an application in android using phonegap, which captures the signature entered by the user, takes a picture and saves it, and then at the next login, compares the signature with the saved one, and if it does, it opens the application. Can someone help me with this with good links or examples? Some working examples are really helpful. thanks.

+7
source share
2 answers

I know a developer who uses Signature Capture for Android from Binary Solutions to capture signatures in his PhoneGap application. Basically you will need to call the signature capture code with the intent, and you can do this by creating an Android plugin for PhoneGap.

+3
source

I have done a lot of research in this area since I need a plugin in order to do the same thing as you.

I am currently using the plugin: http://willowsystems.github.com/jSignature/#/about/

In my case, it was necessary to be cross-platform, as we focus not only on Android, but also on iOS and WP. You can use it to save captions to images and other formats.

Hope this works for you, at least to capture the signature, since comparing the signature is a completely different need.

+1
source

All Articles