We have an app that we are porting over to MAUI from old PocketPC/WinMo code.
The last piece we're missing is being able to capture a signature. I'm trying to use the Telerik MAUI Signature Pad, but it doesn't seem to support the data format we need.
The signatures are stored in the database as a string, representing the point data of all the lines in the signature.
For example, something like
"1,2;3,4;5,6;7,8/10,11;12,13;14,15/21,22;23,24;25,26"
Where the string is line-data separated by "/", and the line data is x,y point data separated by semi-colons.
We don't need the component to present the data exactly that way... we can take care of formatting it how we need, as long as the component exposes a way to get the point and line data.
But I don't see any public methods or properties on it that seem to expose this. Near as I can see, the only way to get the signature from SignaturePad is as an image. While this is certain a nice option, especially in the modern world, it would mean reworking the backend, as well as the accompanying website, which is not part of the project.
Is there a way to get line/point data from the MAUI SignaturePad component?