shri Kanchi
shri Kanchi

Reputation: 33

Download pdf with annotaation

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

Answers (1)

Raymond Camden
Raymond Camden

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

Related Questions