Reputation: 544
How can i get the results of the Signature Screen into the cloud with a DataContainer. What formats are supported?
Any help will be appreciated...
Upvotes: 1
Views: 76
Reputation: 13
What formats are supported?
The captured image is returned in JPG-format.
Upvotes: 0
Reputation: 608
first step is to call
binary getAnswerData(answer-descriptor answer)
or
binary getAnswerDataByClientKey(answer-descriptor answer, string clientKey)
This should give you the data. You can store it in a variable and add that to a data container. You have to take care not to store to much binary data in one single data container ... this will produce platform dependent problems. 1MB per data container should be safe on all platforms though. If you need to transmit more data, then chunk it into separate containers.
Upvotes: 1