Product: apryse doc(@pdftron/webviewer)
Product Version: 11.1.1
i am using webviewer 11.1.1 at angular project i am editing the pdf after enable the toolbar
instance.UI.enableFeatures([instance.UI.Feature.ContentEdit]) here i am saving the annotation to db and merging the annotation to pdf with help of await annotationManager.exportAnnotations();
and merge the annotation
const promises = getdocumentAnnotationsList.map(async (anno: any) => {
** try {**
** if (anno.annotation) {**
** await annotationManager.importAnnotations(anno.annotation);**
** }**
** } catch (error) {**
** console.error(‘Error processing annotation:’, error);**
** }**
** });**
** await Promise.allSettled(promises);**
but here is problem edited text is not import and export at annotation. is there any solution for this
thanks
sonu kumar