show pdf files in a php page

后端 未结 3 2029
悲&欢浪女
悲&欢浪女 2020-12-21 21:09

I have some pdf files and want to show them online in my website,not downloading or displaying with acrobat or firefox add-on, actullay I need a pdf viewer. I am not sure if

3条回答
  •  遥遥无期
    2020-12-21 21:41

    Like @Lix said most modern browsers have this built in it works well in chrome and firefox. This is what I do...

    
    
                

    It appears you don't have a PDF plugin for this browser. No biggie... you can click here to download the PDF file.

    It degrades well if the browser doesn't support viewing PDF by letting one download it. I have looked for other solutions such as converting to html or image. But I don't like to load lots of large images and converting to html loses much of the formatting.

    You can convert on your server though if your running linux with this command...

    convert abc.pdf abc.jpg

    -EDIT-- Firefox uses PDF.js to render PDFs. I've looked into before, but the complexity wasn't worth it for any of my projects.

    Hope this helps. Aloha.

提交回复
热议问题