How to embed a PDF file in a web site?

I simply want to embed a PDF file in a web site.

The best solution I've found is Google Docs Viewer (http://docs.google.com/viewer), but it does not work for IE and obviously that is not going to work for me.

Anyone have a clean, easy solution to this?

Update: I should add that one of the benefits of embedding the PDF file the Google viewer way is that as the PDF file I link to gets updated (and it could without notice to me), my site would automatically be holding the same PDF file (provided the full pathname doesn't change, which it does not). For this reason converting the file to an image is not preferred while.


Well since you obviously don't want to force someone to download the bloated insecure pdf plugin, why not let them use the bloated insecure flash player?

http://flexpaper.devaldi.com/

But really it is just a simple as

<iframe src="path/to/pdf" width="500" height="700">


How long is the pdf file? Can't you convert it to a very long image and display that in a div with a scrollbar?


Updated answer for HTML5:

<object data="filename.pdf" type="application/pdf">
  Your browser does not support pdfs, <a href="filename.pdf">click here to
  download the file.</a>
</object>

You can read about it here:

http://www.w3schools.com/tags/tag_object.asp

链接地址: http://www.djcxy.com/p/36460.html

上一篇: Flask将PDF作为自己的页面进行处理

下一篇: 如何在网站中嵌入PDF文件?