Replies: 1 comment
-
If you want to save a previous signature and reload the data you will need to save it with |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am able to load a previous signature into the component using
this.sigPad = new SignaturePad(canvas);
this.sigPad.fromDataURL("datastring");
My previous signature loads and then I can continue editing / adding to it. However, when my save button is clicked and I use
this.sigPad.toSVG();
or
this.sigPad.toDataURL("image/svg+xml")
I only get the edits I made. I do not get the complete image.
How do I get the previous signature and the edits?
Beta Was this translation helpful? Give feedback.
All reactions