Which product are you using?
PDF.js Express Plus
PDF.js Express Version
UI Version = 8.7.0
Core version = 8.7.5
Detailed description of issue
I am trying to store custom rubber stamps on a database as a string to use them again at a later time. When I use the string to populate the custom stamp drop down, entries that were saved with white text are missing the text. This doesn’t appear to be the case with the stamps with black text.
Expected behaviour
I expect to see the white text on the stamp.
Does your issue happen with every document, or just one?
Every document
Link to document
N/A
Code snippet
const stampTool = instance.Core.documentViewer.getTool('AnnotationCreateRubberStamp');
function saveStamps() {
const customStamps = stampTool.getCustomStamps();
const deepClonedSignatures = JSON.parse(JSON.stringify(customStamps));
const valToSend = JSON.stringify(deepClonedSignatures);
saveStampsToDatabase(valToSend);
}
function setCustomStamps() {
const parsedString = JSON.parse(getStampsFromDatabase());
stampTool.setCustomStamps(parsedString);
}