I store the signature image into a database by storing the picture as Base64 string into a db string field. Any possibility to reasign and show the image in the TWebSignatureCapture control? I only found the possibility to paint directly onto the control canvas. Is there an easier method?
Other than painting on the canvas, there is not another built-in function.
I have the same necessity, is there an example code for this?
You could create a TGraphic and load it from the base64 URL you stored (TGraphic.LoadFromURL) and then draw it on the TWebSignatureCapture.Canvas with
WebSignatureCapture1.Canvas.Draw(x,y,graphic);
1 Like