What is the recommended way to embed PDF in HTML?
- iFrame?
- Object?
- Embed?
What does Adobe say itself about it?
In my case, the PDF is generated on the fly, so it can't be uploaded to a third-party solution prior to flushing it.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Probably the best approach is to use the PDF.JS library. It's a pure HTML5/JavaScript renderer for PDF documents without any third-party plugins. Online demo: http://mozilla.github.com/pdf.js/web/viewer.html |
|||||||||||||||||
|
|
You can also use Google PDF viewer for this purpose. As far as I know it's not an official Google feature (am I wrong on this?), but it works for me very nicely and smoothly. You need to upload your PDF somewhere before and just use its URL:
What is important is that it doesn't need a Flash player, it uses JavaScript. |
|||||||||||||||||||||
|
|
This is quick, easy, to the point and doesn't require any third-party script:
|
|||||||||||||||||||||
|
|
PDF Object is an excellent solution. See examples and download JavaScript here: http://pdfobject.com |
|||||||||||||||||||
|
|
You do have some control over how the PDF appears in the browser by passing some options in the query string. I was happy to this working, until I realized it does not work in IE8. :( It works in Chrome 9 and Firefox 3.6, but in IE8 it shows the message "Insert your error message here, if the PDF cannot be displayed." I haven't yet tested older versions of any of the above browsers, though. But here's the code I have anyway in case it helps anyone. This sets the zoom to 85%, removes scrollbars, toolbars and nav panes. I'll update my post if I do come across something that works in IE as well.
|
|||||
|
|
embedit.in is like Scribd, but it has an API that would let you do this in an automated fashion as your PDFs are generated. That way, you don't have to deal with building a PDF viewer yourself or making sure people have the right plug-ins installed. Disclaimer: embedit.in is my day job. |
|||||||||||
|
|
FDView combines PDF2SWF (which itself is based on xpdf) with an SWF viewer so you can convert and embed PDF documents on the fly on your server. xpdf is not a perfect PDF converter. If you need better results then Ghostview has some ability to convert PDF documents into other formats which you may be able to more easily build a Flash viewer for. But for simple PDF documents, FDView should work reasonably well. |
|||||
|
|
I would say the open source library FlexPaper is the best option by far. You stay in control over your documents and it actually works a lot better than Scribd... |
||||
|
Have a look for this code- To embed the PDF in HTML
|
|||||
|
|
Scribd no longer require you to host your documents on their server. If you create an account with them so you get a publisher ID. It only takes a few lines of JavaScript code to load up PDF files stored on your own server. For more details, see Developer Tools. |
|||||
|
|
I recently open sourced an HTML5 PDF viewer. It converts PDF pages to images, streams to the client and allows you to copy/paste text. |
|||||||
|
|
Demo: PDF document in inline frame is an example showing that a PDF can be embedded as an iframe. |
|||||||
|
|
Convert it to PNG via ImageMagick, and display the PNG (quick and dirty).
This is a good option if you need a quick solution, want to avoid cross-browser PDF viewing problems, and if the PDF is only a page or two. Of course, you need ImageMagick installed (which in turn needs Ghostscript) on your webserver, an option that might not be available in shared hosting environments. There is also a PHP plugin (called imagick) that works like this but it has it's own special requirements. |
|||||
|
|
If you are developing solutions using .NET then you can use this custom control to neatly embed PDF files where you exactly want them to be, http://www.beansoftware.com/ASP.NET-Tutorials/PDF-View-Custom-Control.aspx |
|||
|
|
|
In case your div will overlay on top of the PDF the DIV will disappear Found a solution here You basically need to insert and empty iframe below the div but overlaying the PDF and play with Z-index : pdf (1), background iframe (50), content div (100). |
|||
|
|
|
Pressmo.com is another PDF 2 flash converter which allows to keep a whole publication (viewer and PDF data) on your server, so you stay undependent from any external services. Pages are downloaded only when required. |
||||
|
|
|
To stream the file to the browser, see Stack Overflow question How to stream a PDF file as binary to the browser using .NET 2.0 - note that, with minor variations, this should work whether you're serving up a file from the file system or dynamically generated. With that said, the referenced MSDN article takes a rather simplistic view of the world, so you may want to read Successfully Stream a PDF to browser through HTTPS as well for some of the headers you may need to supply. Using that approach, an iframe is probably the best way to go. Have one webform that streams the file, and then put the iframe on another page with its |
||||
|
|
|
Another option is issuu.com. Its viewer is very useful for embedding books or magazines. But it shows some extra related documents with the free version. |
||||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
:). I've reworded the question so it is reopenable - there should be a single best-practice approach, without it being a "recommendation" question as such. – halfer Oct 6 '12 at 12:29