Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
37  
I keep seeing "nonconstructive" threads closed by casperOne, nearly all of which have been +1 by a hundredfold or more. – b1naryatr0phy Oct 6 '12 at 2:36
4  
@b1naryatr0phy - if you can see the 'reopen' button (not sure how many rep points you need) then click it :). 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
@halfer Looks like I'm about 2821 rep shy of that privilege >_< – b1naryatr0phy Oct 11 '12 at 20:50
4  
@b1naryatr0phy - d'oh! (2 reopen votes so far, it may well get there!) – halfer Oct 11 '12 at 20:55
5  
Voted to reopen. – Jason S Dec 18 '12 at 18:18
show 2 more comments

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

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.

18 Answers

up vote 138 down vote accepted

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

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

share|improve this answer
9  
As noted in another answer, scribd actually uses pdf2swf to convert pdf files – Peter Craig Nov 4 '09 at 9:14
4  
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
4  
For those who come later, @b1naryatr0phy's comment refers to a solution that was edited out of the answer, and doesn't apply to the current answer. – LarsH Oct 11 '12 at 16:19
PDF.js library actually looks like a very good solution, although the linked demo doesn't show it embedded in a page (it takes up the whole page). But it uses HMTL5 canvas, so it should be easy to embed, and it's fast. On the down side, it takes some js to use, unlike <object>: github.com/mozilla/pdf.js/blob/master/examples/helloworld/… – LarsH Oct 11 '12 at 16:25
@LarsH Thanks for clarifying that. – b1naryatr0phy Oct 11 '12 at 20:45

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.

share|improve this answer
9  
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. – Meow Mix Jan 18 '12 at 10:07
2  
It wasn't clear (to me at least) what the final verdict was on requiring the user to be signed in to google so I just tried it and it does kick you over to the google sign in page and will not display the document if you don't sign in. That's a shame, really. This would be an excellent option otherwise. – Ron Smith Jun 21 '12 at 17:26
3  
This option works great, but you have to make your PDFs publicly accessible, which for me is not always an option. – KoviNET Aug 19 '12 at 7:19
3  
@RonSmith, it no longer requires sign-in.. – riot_starter Nov 21 '12 at 10:47
show 2 more comments

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">
share|improve this answer
2  
Better to use an <object> tag so that you can include a fall-back. – Jonathon Hill Aug 29 '11 at 15:53
10  
Umm, for what? It works in FF, Chrome and IE 7/8/9. – Batfan Aug 29 '11 at 19:37
2  
+! This works fantastically well! Thanks – Rippo Jan 26 '12 at 10:07
1  
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 '12 at 4:09
5  
if you want to get sure it will be shown instead of auto download the pdf (as it happend to me) add type='application/pdf' to the embed tag – Hassek Sep 4 '12 at 15:44
show 11 more comments

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

share|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
1  
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 '12 at 12:46
5  
I have small thumbs :( – Steve May 9 '12 at 8:19
1  
Things may have changed since this was posted, but when I tried it, PDF Object didn't work in Firefox or Chrome, and worse, it didn't fallback gracefully to show the alternative message. – LarsH Oct 11 '12 at 17:03

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>
share|improve this answer
This is great! Thanks! – Benjamin Sep 1 '12 at 21:41
That's the best solution because is using the browser capabilities and not a complicated third-party solution. In all modern browsers (IE9, FF or Chrome) PDF should embed nicely. Sorry for IE 6/7 users. They have to upgrade. We've stop supporting these browsers long time ago. :( – Adrian P. Feb 14 at 0:55

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.

share|improve this answer
1  
Website is down! – Adrian P. Feb 14 at 0:56
site is still down – Matthew Lock Mar 7 at 10:17
1  
Yeah, it's gone. It was shut down in 2012. – Jim Puls Mar 7 at 18:54

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.

share|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

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...

share|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

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>
share|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. – Mottie Oct 21 '11 at 14:07

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.

share|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

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/

share|improve this answer
Great name) i'm gonna use it – SomeUser Jan 5 '12 at 21:48
3  
damnfinejs.com appears to be broken. – Peter Mortensen Jun 10 '12 at 13:22

Demo: PDF document in inline frame is an example showing that a PDF can be embedded as an iframe.

share|improve this answer
3  
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

Convert it to PNG via ImageMagick, and display the PNG (quick and dirty).

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

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.

share|improve this answer
Or convert the image to PNG using an application, such as Preview on Mac. – Garrett Sep 5 '12 at 18:19
but can you do that programmatically? – Dan Mantyla Sep 21 '12 at 21:55

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

share|improve this answer

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).

share|improve this answer

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.

share|improve this answer

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 src attribute set to the first form.

share|improve this answer

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.

share|improve this answer

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.