Come visualizzare il file PDF in HTML?


155

Ho un file PDF generato automaticamente da itext e ho bisogno di visualizzare quel file PDF in HTML. La mia domanda è: come visualizzare un file PDF locale in HTML usando pdf.js ? Quel file PDF dovrebbe essere generato da alcuni standard?


1
Possibile duplicato di Visualizza PDF nel browser Web
Rizvan

Risposte:


231

L'implementazione di un file PDF nella tua pagina web HTML è molto semplice.

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

Assicurati di modificare la larghezza e l'altezza per le tue esigenze. In bocca al lupo!


Ottima soluzione, semplice.
agosto

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

Il <embed>tag è nuovo in HTML5, molto comodo. vedi qui link
Belter

2
Il modo migliore è descritto su jsgyan.blogspot.in/2017/12/…
Suman Bogati,

1
Mostra che il plug-in non è supportato nel dispositivo mobile sul browser Chrome.
JWC,

50

Uso il visualizzatore PDF incorporabile di Google Documenti. I documenti non devono essere caricati su Google Documenti, ma devono essere disponibili online.

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

1
Ecco il link: Documenti Google
incorporabili

Devi utilizzare iframe insieme al visualizzatore di documenti Google, altrimenti potresti ricevere un messaggio "Errore rilevato dal firewall dell'applicazione", a seconda del tuo hosting.
user890332

1
Si noti che questo metodo supporta solo PDF fino a 25mb
tommybond

2
Solo un ulteriore commento, se si desidera incorporare un file pdf nell'unità Google. Dopo aver fatto clic nel pdf, trova "Incorpora elemento" che genererà l'iframe HTML.
Daisy Qin,

Non è necessariamente necessario essere online, puoi archiviarlo nelle tue risorse localmente e indicarlo
Manzur Khan

24

Se vuoi usare pdf.js, ti consiglio di leggere QUESTO

Puoi anche caricare il tuo pdf da qualche parte (come Google Drive) e utilizzare il suo URL in un iframe

o

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

15

puoi visualizzarlo facilmente in una pagina html come questa

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


11

Nella pagina HTML per PC è facile da implementare

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

ma pdf show in mobile con questo codice non è possibile è necessario un plug-in

se non hai risposto al tuo sito. Quindi il codice pdf sopra non viene visualizzato su dispositivo mobile ma è possibile inserire l'opzione di download dopo il codice

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

Su Chrome è ok ma su IE non funziona. Come fare su IE
Hong Van Vit,

7

Il modo più semplice è usare,

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

e se viene ancora scaricato invece di visualizzarlo, controlla l'intestazione della risposta del server, dovrebbe avere Content-Disposition:Inlinee non Content-Disposition:Attachment.


7

1. Incorporamento inline HTML nativo del browser:

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

Pro:

  • Nessuna limitazione per le dimensioni dei file PDF (anche centinaia di MB)
  • È la soluzione più veloce

Contro:

  • Non funziona sui browser mobili

2. Visualizzatore di Google Documenti:

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

Pro:

  • Funziona su browser desktop e mobile

Contro:

  • Limite di file di 25 MB
  • Richiede tempo aggiuntivo per scaricare il visualizzatore

3. Altre soluzioni per incorporare PDF:


NOTA IMPORTANTE:

Controlla l'intestazione della risposta HTTP X-Frame-Options. Dovrebbe essere SAMEORIGIN.

X-Frame-Options SAMEORIGIN;

6

Portable Document Format ( PDF ).

  • Qualsiasi browser «Utilizza _Embeddable Google Document Viewer per incorporare il file 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>
  • Solo per browser Chrome «Chrome PDF viewer tramite plug-in. 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">

Esempio 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

Ho avuto qualcosa di simile prima e ho usato normalmente i tag

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

ma è interessante scoprire altri modi come sopra!


2

L'elemento è supportato da tutti i browser e definisce un oggetto incorporato in un documento HTML.

Concludendo: OBJECT è buono, EMBED è vecchio. Oltre ai tag PARAM di IE, qualsiasi contenuto tra i tag OBJECT verrà reso se il browser non supporta il plug-in di riferimento OBJECT e, a quanto pare, il contenuto viene richiesto http indipendentemente dal fatto che venga reso o meno. Riferimento

Codice di lavoro: 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

Puoi usare

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

Oppure, se vuoi farlo occupare l'intera pagina:

<a href="your_pdf_file_path>Link</a>
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.