Recommended way to embed PDF in HTML?

前端 未结 24 1917
天命终不由人
天命终不由人 2020-11-21 04:54

What is the recommended way to embed PDF in HTML?

  • iFrame?
  • Object?
  • Embed?

What does Adobe say itself about it?

In my

24条回答
  •  攒了一身酷
    2020-11-21 05:35

    1. Construct a blob of the input PDF bytes
    2. Use an iframe and PDF.js patched with this cross browser workaround

    The URI for the iframe should look something like this:

    /viewer.html?file=blob:19B579EA-5217-41C6-96E4-5D8DF5A5C70B
    

    Now FF, Chrome, IE 11, and Edge all display the PDF in a viewer in the iframe passed via standard blob URI in the URL.

提交回复
热议问题