What is the Best Way to Embed PDF in HTML?
- iFrame?
- Object?
- Embed?
Adobe pronounces itself about it?
Supose that the PDF was generated on the fly, so it can't be uploaded to a thrid-party solution prior to flushing it
|
feedback
|
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.
|
Probably the best approach is to use 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 | |||||||||
feedback
|
|
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. | |||||||||||||||||||||
feedback
|
|
PDF Object is an excellent solution. See examples and download JavaScript here: http://pdfobject.com | |||||||||||
feedback
|
|
Old question but, I thought I would throw my 2 cents in since I didn't see this solution mentioned. This is quick, easy, to the point and doesn't require any third party script.
| |||||||||||||||
feedback
|
|
With the standard disclaimer that it's my day job, embedit.in is like Scribd but 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. | |||
|
feedback
|
|
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. | |||||
feedback
|
|
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.
| ||||
|
feedback
|
|
I would say the open source lib FlexPaper is the best option by far. You stay in control over your documents and actually works a lot better than scribd... | |||||||
feedback
|
|
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 to load up pdf's stored on your own server. For more details see here: http://www.scribd.com/developers | |||||
feedback
|
|
Have a look for this code- To embed the PDF in HTML
| |||||
feedback
|
|
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. | |||
|
feedback
|
|
here is an example showing that a PDF can be embedded as an iframe http://www.cs.tut.fi/~jkorpela/html/iframe-pdf.html | |||||||
feedback
|
|
Convert it to PNG via ImageMagic.
| |||
|
feedback
|
|
| |||
|
feedback
|
|
To stream the file to the browser, see here: http://stackoverflow.com/questions/84995/how-to-stream-a-pdf-as-binary-to-the-browser-using-net-20 - 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 here 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 src attribute set to the first form. | |||
|
feedback
|
|
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 | |||
|
feedback
|
|
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). | |||
|
feedback
|
|
Another option is issuu.com . It's viewer is very useful for embedding books or magazines. But It shows some extra related documents with free version. | |||
|
feedback
|
|
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. | ||||
|
feedback
|
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.