Capture Signature from Native and include in File Documents

0
Hello everyone! Is there a way to include a Signature in file documents? I’ve been exploring this for a while, signatures captured in native mobile are stored on B64 format. Is there a way to encode it an image format and commit? Thank you!
asked
2 answers
1

CommunityCommons has a function Base64DecodeToFile to store Base64 encoded content in a FileDocument. Just make sure your entity is a specialization of System.Image 

answered
0

Woah! It worked!

I already passed by that Java action a lot of times but was hesitant to use it since I thought it was ONLY for decoding B64 to FileDocuments. Turns out it can also be used to decode to Image. Just need to set entity generalization to System.Image.

Thanks a lot!

answered