Reputation: 21
I am able to render my PDF in webpage using pdf.js in Angular. I also need to annotate the PDF, capture annotated text and provide comments and save the PDF in the webpage. Please let me know how can I do this. I am new to angular.
Upvotes: 1
Views: 1640
Reputation: 4937
The most recent release of the Adobe DC View SDK is a PDF viewer that functions similarly to PDF.js in that it is entirely client-side but now does offer annotation capabilities with callbacks that will let you capture comments in your own repo without having to parse the PDF.
https://www.adobe.io/apis/documentcloud/dcsdk/viewsdk.html
Upvotes: 1
Reputation: 2570
PDF.js does not support adding/editing annotations, nor interactive form filling.
You would either have to manually add annotating yourself, or find another solution.
If you are looking for suggestions on possible existing solutions you should check out https://softwarerecs.stackexchange.com/
Upvotes: 0