Recommended way to embed PDF in HTML?

前端 未结 24 1919
天命终不由人
天命终不由人 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:24

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

    ';
    ?>
    

    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.

提交回复
热议问题