How can I capture a users signature? The idea is that the user will use their fingers to draw their signature in a box. Part of the saving process will be to write this image to their Photos folder.
SignRequest highly recommends the sender to create input fields as it makes the signing process much easier, especially for first-time users. Without input fields defined: Click in the document. Click on one of the icons to add text, a date, checkbox or signature.
I think this will do it.
http://www.ipodtouchfans.com/forums/showthread.php?t=132024
After that, I think the ability to save a screen capture will do the job.
UIGraphicsBeginImageContext(self.view.bounds.size); //self.view.window.frame.size
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIImageWriteToSavedPhotosAlbum(viewImage, nil, nil, nil);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With