Display Pdf Files To Your Html Page Using Google Pdf Viewer(Gview)

To display a pdf to a webpage without having to download Js libraries to your application, you can use the Google PDF viewer. Everything is rendered using an iframe.

1
2
3
<!--html-->
<iframe   src="https://docs.google.com/gview?embedded=true&url=[PATH_TO_PDF_FILE]">
   </iframe>

If you are rendering a file from objects like Google cloud_storage, you will need to URL Encode your file path.

HTML

Related Posts

0 Comments

12345

    00