如何以HTML显示PDF文件?


155

我有一个由itext自动生成的PDF文件,我需要以HTML显示该PDF文件。我的问题是:如何使用pdf.js在HTML中显示本地PDF文件?该PDF文件是否应按某些标准生成?


Answers:


230

在HTML网页中实现PDF文件非常容易。

<embed src="file_name.pdf" width="800px" height="2100px" />

确保根据需要更改宽度和高度。祝好运!


伟大的解决方案,简单。
2015年

5
<iframe src="file_name.pdf" style="width: 100%;height: 100%;border: none;"></iframe>
Ĭsααc吨իεβöss

<embed>标记是HTML5中的新标记,非常方便。看到这里链接
贝尔德


1
它表明Chrome浏览器上的移动设备不支持该插件。
JWC

50

我使用的是Google文档可嵌入的PDF查看器。这些文档不必上传到Google文档,但必须在线提供。

<iframe src="https://docs.google.com/gview?url=https://path.com/to/your/pdf.pdf&embedded=true" style="width:600px; height:500px;" frameborder="0"></iframe>


您需要将iframe与Google Docs Viewer一起使用,否则可能会收到“应用防火墙检测到错误”消息,具体取决于您的托管服务器。
user890332

1
请注意,此方法仅支持最大25mb的PDF
tommybond

2
如果您想将pdf文件嵌入到Google驱动器中,请进一步评论。点击进入pdf后,找到“嵌入项目”,它将生成iframe HTML。
雏菊黛茜

它不一定需要在线,您可以将其存储在本地资产中并指向它
Manzur Khan

24

如果您想使用pdf.js,建议您阅读

您还可以将pdf上传到某个地方(例如Google云端硬盘),并在iframe中使用其URL

要么

<object data="data/test.pdf" type="application/pdf" width="300" height="200">
<a href="data/test.pdf">test.pdf</a>
</object>

15

您可以像这样在html页面中轻松显示

<embed src="path_of_your_pdf/your_pdf_file.pdf" type="application/pdf"   height="700px" width="500">


11

在PC的html页面中易于实现

<embed src="study/sample.pdf" type="application/pdf"   height="300px" width="100%">

但是无法通过此代码在pdf中进行移动显示,您必须需要一个插件

如果您没有响应您的网站。然后上面的代码pdf不会显示在手机中,但您可以在代码后放置下载选项

<embed src="study/sample.pdf" type="application/pdf"   height="300px" width="100%" class="responsive">
<a href="study/sample.pdf">download</a>

在chrome上还可以,但在IE上不起作用。如何在IE上做
Hong Van Vit

7

最简单的方法是使用,

<iframe src="pdf-link">
</iframe>

如果仍然下载而不是查看它,请检查服务器响应标头,它应该有,Content-Disposition:Inline而没有Content-Disposition:Attachment


7

1.浏览器本地HTML嵌入式嵌入:

<embed
    src="http://infolab.stanford.edu/pub/papers/google.pdf#toolbar=0&navpanes=0&scrollbar=0"
    type="application/pdf"
    frameBorder="0"
    scrolling="auto"
    height="100%"
    width="100%"
></embed>
<iframe
    src="http://infolab.stanford.edu/pub/papers/google.pdf#toolbar=0&navpanes=0&scrollbar=0"
    frameBorder="0"
    scrolling="auto"
    height="100%"
    width="100%"
></iframe>

优点:

  • 没有PDF文件大小限制(甚至数百MB)
  • 这是最快的解决方案

缺点:

  • 在移动浏览器上不起作用

2. Google文档查看器:

<iframe
    src="https://drive.google.com/viewerng/viewer?embedded=true&url=http://infolab.stanford.edu/pub/papers/google.pdf#toolbar=0&scrollbar=0"
    frameBorder="0"
    scrolling="auto"
    height="100%"
    width="100%"
></iframe>

优点:

  • 适用于台式机和移动浏览器

缺点:

  • 档案上限为25MB
  • 需要更多时间来下载查看器

3.嵌入PDF的其他解决方案:


重要的提示:

请检查X-Frame-Options HTTP响应标头。它应该是SAMEORIGIN。

X-Frame-Options SAMEORIGIN;

6

便携式文档格式(PDF)。

  • 任何浏览器«使用_Embeddable Google文档查看器将PDF文件嵌入iframe

    <iframe src="http://docs.google.com/gview?
        url=http://infolab.stanford.edu/pub/papers/google.pdf&embedded=true"
        style="width:600px; height:500px;" frameborder="0">
    </iframe>
  • 仅适用于Chrome浏览器«使用插件的Chrome PDF查看器。pluginspage=http://www.adobe.com/products/acrobat/readstep2.html

    <embed type="application/pdf" 
    src="http://www.oracle.com/events/global/en/java-outreach/resources/java-a-beginners-guide-1720064.pdf" 
    width="100%" height="500" alt="pdf" pluginspage="http://www.adobe.com/products/acrobat/readstep2.html" 
    background-color="0xFF525659" top-toolbar-height="56" full-frame="" internalinstanceid="21" 
    title="CHROME">

Sippet示例:

<html>
   <head></head>
   <body style=" height: 100%;">
      <div style=" position: relative;">
      <div style="width: 100%; /*overflow: auto;*/ position: relative;height: auto; margin-top: 70px;">
         <p>An 
            <a href="https://en.wikipedia.org/wiki/Image_file_formats" >image</a> is an artifact that depicts visual perception
         </p>
         <!-- To make div with scroll data [max-height: 500;]-->
         <div style="/* overflow: scroll; */ max-height: 500; float: left; width: 49%; height: 100%; ">
            <img width="" height="400" src="https://peach.blender.org/wp-content/uploads/poster_bunny_bunnysize.jpg?x11217" title="Google" style="-webkit-user-select: none;background-position: 0px 0px, 10px 10px;background-size: 20px 20px;background-image:linear-gradient(45deg, #eee 25%, transparent 25%, transparent 75%, #eee 75%, #eee 100%),linear-gradient(45deg, #eee 25%, white 25%, white 75%, #eee 75%, #eee 100%);cursor: zoom-in;" />
            <p>Streaming an Image form Response Stream (binary data) «  This buffers the output in smaller chunks of data rather than sending the entire image as a single block. 
               <a href="http://www.chestysoft.com/imagefile/streaming.asp" >StreamToBrowser</a>
            </p>
         </div>
         <div style="float: left; width: 10%; background-color: red;"></div>
         <div style="float: left;width: 49%; ">
            <img width="" height="400" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==" alt="Red dot"/>
            <p>Streaming an Image form Base64 String « embedding images directly into your HTML.
               <a href="https://en.wikipedia.org/wiki/Data_URI_scheme">
               <sup>Data URI scheme</sup>
               </a>
               <a href="https://codebeautify.org/image-to-base64-converter">
               <sup>, Convert Your Image to Base64</sup>
               </a>
            <pre>data:[&lt;media type&gt;][;base64],&lt;data&gt;</pre>
            </p>
         </div>
      </div>
      <div style="width: 100%;overflow: auto;position: relative;height: auto; margin-top: 70px;">
      <video style="height: 500px;width: 100%;" name="media" controls="controls">
         <!-- autoplay -->
         <source src="http://download.blender.org/peach/trailer/trailer_400p.ogg" type="video/mp4">
         <source src="http://download.blender.org/peach/trailer/trailer_400p.ogg" type="video/ogg">
      </video>
      <p>Video courtesy of 
         <a href="https://www.bigbuckbunny.org/" >Big Buck Bunny</a>.
      </p>
      <div>
         <div style="width: 100%;overflow: auto;position: relative;height: auto; margin-top: 70px;">
            <p>Portable Document Format 
               <a href="https://acrobat.adobe.com/us/en/acrobat/about-adobe-pdf.html?promoid=CW7625ZK&mv=other" >(PDF)</a>.
            </p>
            <div style="float: left;width: 49%; overflow: auto;position: relative;height: auto;">
               <embed type="application/pdf" src="http://www.oracle.com/events/global/en/java-outreach/resources/java-a-beginners-guide-1720064.pdf" width="100%" height="500" alt="pdf" pluginspage="http://www.adobe.com/products/acrobat/readstep2.html" background-color="0xFF525659" top-toolbar-height="56" full-frame="" internalinstanceid="21" title="CHROME">
               <p>Chrome PDF viewer 
                  <a href="https://productforums.google.com/forum/#!topic/chrome/MP_1qzVgemo">
                  <sup>extension</sup>
                  </a>
                  <a href="https://chrome.google.com/webstore/detail/surfingkeys/gfbliohnnapiefjpjlpjnehglfpaknnc">
                  <sup> (surfingkeys)</sup>
                  </a>
               </p>
            </div>
            <div style="float: left; width: 10%; background-color: red;"></div>
            <div style="float: left;width: 49%; ">
               <iframe src="https://docs.google.com/gview?url=http://infolab.stanford.edu/pub/papers/google.pdf&embedded=true#:page.7" style="" width="100%" height="500px" allowfullscreen="" webkitallowfullscreen=""></iframe>
               <p>Embeddable 
                  <a href="https://googlesystem.blogspot.in/2009/09/embeddable-google-document-viewer.html" >Google</a> Document Viewer. Here's the code I used to embed the PDF file: 
<pre>
&lt;iframe 
src="http://docs.google.com/gview?
url=http://infolab.stanford.edu/pub/papers/google.pdf&embedded=true" 
style="width:600px; height:500px;" frameborder="0"&gt;&lt;/iframe&gt;
</pre>
               </p>
            </div>
         </div>
      </div>
   </body>
</html>


5

我之前有过类似的东西,并且通常使用标签

<a href="path_of_your_pdf/your_pdf_file.pdf" tabindex="-1"><strong>click here</strong></a>

但是,找出上述其他方法很有趣!


2

所有浏览器都支持该元素,并在HTML文档中定义一个嵌入式对象。

底线:目标是好,嵌入是旧的。除了IE的PARAM标记外,如果浏览器不支持OBJECT的引荐插件,则OBJECT标记之间的任何内容都将被呈现,并且显然,无论是否呈现,都将请求http请求。参考

工作代码:https//www.w3schools.com/code/tryit.asp?filename = G7L8BK6XC0A6

<!DOCTYPE html>
<html>
<body>

<object width="400px" height="400px" data="https://s3.amazonaws.com/dq-blog-files/pandas-cheat-sheet.pdf"></object>
</body>
</html>


0

您可以使用

<iframe src="your_pdf_file_path" height="100%" width="100%" scrolling="auto"></iframe>

或者,如果要占用整个页面,请执行以下操作:

<a href="your_pdf_file_path>Link</a>
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.