Javed A. Baloch
Javed A. Baloch

Reputation: 1070

Show the PDF but not to Download

I have many PDF links, When I click any one of them it will be open in a new tab and there are many options in PDF reader.

enter image description here

Basically I want to disable the download button only.

Or let me explain it more, Basically a client will upload their policy in PDF but that should be show in normal view such as Image or convert into text not in PDF.

Upvotes: 1

Views: 7337

Answers (1)

Nimesh Patel
Nimesh Patel

Reputation: 39

use #toolbar=0&navpanes=0

<iframe src="http://docs.google.com/gview?url=http://www.tutorialspoint.com/php/php_tutorial.pdf&embedded=true" style="width:600px; height:500px;" frameborder="0">
</iframe>

Output :

http://prntscr.com/i4bxhg

it will work. you can get the complete list from here, http://www.adobe.com/devnet/acrobat/pdfs/pdf_open_parameters.pdf

Upvotes: 0

Related Questions