Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

signature capture for android using phonegap

i want to perform an application in android using phonegap which captures the signature entered by the user and take a snapshot of it and stores and later on their next login it compare the signature with stored one and if matches it opens the application.Can anyone help me in acheiving this with some good links or examples?Some working examples will really useful. thank you.

like image 526
android phonegap Avatar asked May 08 '12 10:05

android phonegap


2 Answers

I know of a developer who's using Signature Capture for Android from Binary Solutions to capture signatures in his PhoneGap app. Basically you'll need to call the signature capture code via an intent and you can do that by creating an Android Plugin for PhoneGap.

like image 51
Simon MacDonald Avatar answered Oct 14 '22 00:10

Simon MacDonald


I've done many research in this field, since I needed a plugin for doing the exact same thing as you.

The plugin I am currently using is this: http://willowsystems.github.com/jSignature/#/about/

In my case it was necessary to be cross-platform since we're targeting not only Android but also iOS and WP. You can use it to save the signature to image and other formats.

Hopefully it will work for you, at least for the signature capturing, since the signature comparison is a totally different need.

like image 20
Vasco Costa Avatar answered Oct 14 '22 01:10

Vasco Costa