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

link|improve this question

45% accept rate
feedback

closed as not constructive by casperOne Apr 14 at 13:56

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.

19 Answers

up vote 57 down vote accepted

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

GitHub: https://github.com/mozilla/pdf.js

link|improve this answer
8  
As noted in another answer, scribd actually uses pdf2swf to convert pdf files – Peter Nov 4 '09 at 9:14
2  
I highly recommend against using scribd - I have just performed an experiment on a particular document and in firefox 4 it only displays the first 3 pages, whereas in IE9 its rendering text wrong - its offset some sections of the page. So technically speaking it is buggy. Additionally they expect you to subscribe to print or download documents! Essentially they are taking previously free documents and erecting a paywall around them. – frankster May 1 '11 at 19:15
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:

<iframe src="http://docs.google.com/gview?url=http://example.com/mypdf.pdf&embedded=true" style="width:718px; height:700px;" frameborder="0"></iframe>

What is important is that it doesn't need a Flash player, it uses JavaScript.

link|improve this answer
7  
This appears to currently require the user to be logged into a Google Account. Certainly not ideal for most purposes. – fluteflute Jul 29 '10 at 8:25
23  
@fluteflute - I don't think thats correct. – rrrhys Dec 21 '10 at 2:57
6  
@rrrhys - my testing confirms you are right... – fluteflute Dec 21 '10 at 6:05
3  
One thing that should be mentioned is that there's an upper limit to the size of the PDF that can be displayed. I think it's currently 10MB/100 pages. PS: I don't think the viewer is "unofficial"; they even have a how-to page that constructs the embed URL for you: docs.google.com/viewer – SuperElectric Apr 29 '11 at 16:26
1  
This is an excellent option. – CleverQuack Jan 18 at 10:07
feedback

PDF Object is an excellent solution. See examples and download JavaScript here: http://pdfobject.com

link|improve this answer
This is a really great solution and degrade gracefully. – Ahmad Alfy Apr 22 '11 at 20:37
5  
Even though the PDFObject.js code isn't really necessary, the website is a GREAT resource that shows how to embed (using the <object> tag) your PDFs, and has a cross-browser compatibility chart showing where <object> works. The PDFObject.js code increases compatibility a tiny bit. This should definitely be marked as the correct answer! – Scott Rippey Oct 28 '11 at 18:04
I concur - pdfobject is the best general intro to embedding PDFs plus it's an excellent tool in itself. Large thumbs-up... – SAL Mar 1 at 12:46
I have small thumbs :( – Steve May 9 at 8:19
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.

<embed src="http://yoursite.com/the.pdf" width="500" height="375">
link|improve this answer
Better to use an <object> tag so that you can include a fall-back. – Jonathon Hill Aug 29 '11 at 15:53
4  
Umm, for what? It works in FF, Chrome and IE 7/8/9. – Batfan Aug 29 '11 at 19:37
1  
+! This works fantastically well! Thanks – Rippo Jan 26 at 10:07
I thought developers would want to know Mac/Firefox gets a broken plugin image. The plugin page won't load the plugin it's looking for. Any ideas how to get around this? – Shanimal May 17 at 4:09
@Shanimal - This appears to be an issue with Adobe -- blog.mozilla.org/addons/2012/05/04/adobe-reader-blocked-mac – Batfan May 17 at 16:36
show 1 more comment
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.

link|improve this answer
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.

link|improve this answer
Is FDView available anywhere else? code4net.com seems to have disappeared. – Michael Myers Aug 30 '11 at 16:18
@Michael Not that I can easily find. I'll leave this answer up on the off chance that someone re-hosts fdview somewhere else. – Adam Davis Sep 2 '11 at 16:09
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.

<div id="pdf">
  <object width="400" height="500" type="application/pdf" data="/my_pdf.pdf?#zoom=85&scrollbar=0&toolbar=0&navpanes=0" id="pdf_content">
    <p>Insert your error message here, if the PDF cannot be displayed.</p>
  </object>
</div>
link|improve this answer
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...

http://flexpaper.devaldi.com

link|improve this answer
2  
but you have to convert your documents to swfs first. Probably not a great solution. – Ash Mar 1 '11 at 16:20
also have a HTML5 fallback – VinnyG Apr 19 '11 at 1:08
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

link|improve this answer
Could you post another link showing how this is done? It's not clear from the link you posted. – SuperElectric Apr 29 '11 at 16:41
Seems like they have updated their website and changed this page. I think this page has the content I was referring to in my original post: scribd.com/developers/api?method_name=Javascript+API – Bjorn Apr 30 '11 at 10:19
feedback

Have a look for this code- To embed the PDF in HTML

<!-- Embed PDF File -->
<OBJECT data="YourFile.pdf" TYPE="application/x-pdf" TITLE="SamplePdf" 
WIDTH=200 HEIGHT=100>
    <a href="YourFile.pdf">shree</a> 
</object>
link|improve this answer
4  
This doesn't seem to work. I always end up with a blank grey screen instead of the pdf. But switching src for data, as in @Gayle's answer, does work. – fudgey Oct 21 '11 at 14:07
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.

https://github.com/andrewseddon/pretty-damn-fine

http://www.damnfinejs.com/

link|improve this answer
Great name) i'm gonna use it – SomeUser Jan 5 at 21:48
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

link|improve this answer
1  
This surely does not work in all browsers. Some may decide to open the PDF in an external application, thus leaving the <iframe> empty. – Arjan Aug 24 '09 at 19:29
Also, that doesn't allow you to see page thumbnails, navigate between pages, zoom in and out, and all the other things that users expect of a PDF document. – camainc Mar 11 '10 at 16:58
feedback

Convert it to PNG via ImageMagic.

<?php
  $dir = '/absolute/path/to/my/directory/';
  $name = 'myPDF.pdf';
  exec("/bin/convert $dir$name $dir$name.png");
  print '<img src="$dir$name.png" />';
?>
link|improve this answer
feedback

Scribd

link|improve this answer
This is nice... but it requires uploading the doc first – Daniel Silveira Nov 15 '08 at 18:20
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.

link|improve this answer
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

link|improve this answer
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).

link|improve this answer
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.

link|improve this answer
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.

link|improve this answer
feedback

protected by Community May 6 '11 at 17:46

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.

Not the answer you're looking for? Browse other questions tagged or ask your own question.