Friday, May 17, 2024
 Popular · Latest · Hot · Upcoming
22
rated 0 times [  24] [ 2]  / answers: 1 / hits: 13542  / 4 Years ago, thu, august 6, 2020, 12:00:00

Some of the PDF.js code mentions an "annotation layer", for example AnnotationLayerBuilder here:


https://github.com/mozilla/pdf.js/blob/95e102c07bc257c2120fd7fd9141762b2c813a1c/web/annotation_layer_builder.js#L118


There is also pdfDocument.annotationStorage and pdfjsLib.AnnotationLayer, which - on all the documents I've tried - are empty, even in documents which do have text annotations.


I couldn't find any examples or documentation on the annotation layer and how it is supposed to be used, but it sure sounds interesting :)



  1. What is the annotation layer? Is this talking about standard PDF annotations, as described in https://pspdfkit.com/blog/2018/what-are-annotations/ or https://www.adobe.com/content/dam/acom/en/devnet/acrobat/pdfs/pdf_reference_1-7.pdf section 8.4 Annotations? Or, is it something internal to PDF.js?



  2. How do I list the existing annotations from javascript code in PDF.js, and how do I add one? (just for display; not expecting to be able to save it in the pdf, of course) Can anyone provide a working code example?




Thanks!


More From » pdf

 Answers
2

Annotations are standard for the PDF file format as described in the links you provided. They are not a new concept to PDF.js.


How you get the annotations will depend on your situation. I'm building a view layer to replace the viewer the PDF.js team built. The basic idea there is you:



  1. Get a reference to the PDFDocumentProxy object via const doc = getDocument(url)

  2. Get a reference to a PDFPageProxy object via const page = await doc.getPage(num)

  3. Get the annotations via await page.getAnnotations()


If you're already using the viewer they built, it doesn't appear to be exposed anywhere.


[#2963] Monday, August 3, 2020, 4 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
quentinaveryb

Total Points: 102
Total Questions: 100
Total Answers: 93

Location: Colombia
Member since Mon, May 2, 2022
2 Years ago
quentinaveryb questions
Fri, Jul 17, 20, 00:00, 4 Years ago
Mon, Aug 12, 19, 00:00, 5 Years ago
Thu, May 16, 19, 00:00, 5 Years ago
;