PDF.js Express Version
8.2.0
When i uploaded file , had isssue
, user cant call annotManager.exportAnnotations({
links: false
});
dont have anything result
Expected behaviour
{Provide a screenshot or description of the expected behaviour}
Does your issue happen with every document, or just one?
{Answer here}
Link to document
pdf (3).pdf (37.2 KB)
Code snippet
WebViewer({
path: _PATH,
initialDoc: _initialDoc,
ui: ‘legacy’,
// enableRedaction: true,
disableFlattenedAnnotations: false,
disabledElements: ELEMENTS_BUTTON_PDFTRON
},
document.getElementById(“viewer”)
).then(async (instance) => {
try {
window.documentViewer = instance;
const {
docViewer,
annotManager,
Annotations
} = instance;
////////////////
const xfdfString = await window.annotManager.exportAnnotations({
links: false
});
Dont have anything result.
Best regards !