Reputation: 33
Is there any way to download pdf with annotation (using adobe embed api) without opening pdf in viewer?
In my application I have download button , if I click on that button then its should start download pdf with annotation.
Upvotes: 0
Views: 251
Reputation: 10857
So, annotations are part of a PDF. If it's in the PDF already, just link to it. If you want to force a download, use the download attribute:
<a href="foo.pdf" download>Download my awesome PDF</a>
Upvotes: 1