Android Question How to Save a Signature Capture with only the points of the signature

DonManfred

Expert
Licensed User
Longtime User
Look at the SignPad Library in similar thread-list...
 
Upvote 0

Lyndon Bermoy

Active Member
Licensed User
Longtime User
Look at the SignPad Library in similar thread-list...

thanks sir :) but it is the same with having saved as an image. I wanted to store the signature in the database as a points, and will restore with the assigned points in the stored signature. How to do this sir?
 
Upvote 0

Reviewnow

Active Member
Licensed User
Longtime User
it would be best to just base64 encode the image and store the encoded string in your database you could then decode and display it later

B4X:
'Add StringUtils Library
  
  Dim signatureCaptured() As Byte
  signatureCaptured = SignatureCapture.GetAsByteArray2(SD, 90, "PNG")
  
  Dim MyEncodedImage as String
  
  MyEncodedImage = su.EncodeBase64(signatureCaptured)  '' Reference String utils
  'Save  MyEncodedImage

'Add the following code to your signaturecapture class
Sub GetAsByteArray2(objSignatureData As SignatureData, quality As Int,  format As String ) As Byte()
   Dim out As OutputStream
   out.InitializeToBytesArray(0)
   objSignatureData.Canvas.Bitmap.WriteToStream(out,quality,format)
   out.Close
   Return out.ToBytesArray()
End Sub
 
Upvote 0
Top