Set or change zoom level in embedded PDF files

The following code will embed a PDF file into a website, and set the zoom level to 75% of the original. Pay attention to the text in red to see how the zoom level is achieved.

<object type=”application/pdf” data=”PATH TO YOUR PDF HERE.pdf?#zoom=75” width=”100%” height=”800″>
<param name=”src” value=”PATH TO YOUR PDF HERE.pdf?#zoom=75” />
<param name=”type” value=”application/pdf” />
<param name=”width” value=”100%” />
<param name=”height” value=”800″ />
<param name=”zoom” value=”75%” />
<a href=”PATH TO YOUR PDF HERE.pdf?#zoom=75“>Click here</a>
</object>

Leave a Reply

Your email address will not be published.