You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using the epSignature delegate in the following:
let signatureVC = EPSignatureViewController(signatureDelegate: self)
if let signature = signatureView.getSignatureAsImage() {
self.epSignature(signatureVC, didSign: signature, boundingRect: signatureView.getSignatureBoundsInCanvas())
}
I am checking for the existence of a signature before using it in the delegate. This works most of the time, and if my users do not attempt to sign then I can prevent the signature from being saved.
However I've seen blank signature images being saved lately. The user can simply tap on the signature view to generate the image, without ever drawing anything in the box. Is there a way to check the resulting image for strokes so I can prevent blank signature images from being saved?
The text was updated successfully, but these errors were encountered:
I am using the
epSignature
delegate in the following:I am checking for the existence of a signature before using it in the delegate. This works most of the time, and if my users do not attempt to sign then I can prevent the signature from being saved.
However I've seen blank signature images being saved lately. The user can simply tap on the signature view to generate the image, without ever drawing anything in the box. Is there a way to check the resulting image for strokes so I can prevent blank signature images from being saved?
The text was updated successfully, but these errors were encountered: