Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable pdf download and save option [duplicate]

I have a PDF file being viewed on the browser.

I want to disable Save, Download and print option of the PDF file.

Please help.

like image 798
Saurabh Kedia Avatar asked Aug 31 '25 03:08

Saurabh Kedia


1 Answers

Try this:

<object width="100%" height="100%" type="application/pdf" 
data="yourpdffile.pdf#toolbar=0" id="pdf_content"><p>Document load was not 
successful.</p></object>

Make sure you add #toolbar=0 in the data attribute after your pdf file.

like image 171
Hallai Seiler Áron Avatar answered Sep 02 '25 16:09

Hallai Seiler Áron