PDF downloading directly in Google Chrome — how to display in browser window instead? [closed]

牧云@^-^@ 提交于 2019-11-29 19:12:04

问题


I have been using Google Chrome and recently I have re-installed my browser.

I found that whatever PDF links I open are directly downloading. However, I want them to be view on browser.

How can I do this?

Chrome is an updated version.


回答1:


For Chrome to open a PDF inline, in the browser window itself, several requirements have to be met, one for the browser itself, the other for the remote server offering the PDF:

  1. There must be a PDF viewer enabled for Chrome, either the external PDF.js one from Mozilla, or the native, builtin Chrome PDF viewer called pdfium (there are other plugins, such as the proprietary ones from Adobe Acrobat or from Foxit which can be used, but I don't discuss these in this answer):

    • In recent Chrome versions, the 'pdfium' viewer should be included automatically. To check if it is enabled, type about:plugins into the URL bar. Search for 'Chrome PDF Viewer'. It should not be disabled.
    • To check for 'PDF.js', type about:extensions into the URL bar. Search for 'pdf.js'. If you find it, enable the checkmark. If you do not find it, it is not installed.

    Note, that you can only enable one of these two internal PDF viewers.

  2. The remote server providing the PDF document to your browser needs to send the correct MIME type and the correct content disposition header, otherwise the browser will not open the PDF directly, but only save it (or offer to save it):

    • the HTTP header needs to be: Content-Disposition: Inline (not: Content-Disposition: Attachment!)
    • the MIME type needs to be: application/pdf (not: application/octet-stream!). It may be the case that it also works for text/html but I haven't checked this.

As an additional measure, please also open chrome://flags, search for 'pdf' and see if there is a suspicious setting which may prevent the direct rendering of PDFs in the browser window.



来源:https://stackoverflow.com/questions/29599405/pdf-downloading-directly-in-google-chrome-how-to-display-in-browser-window-in

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!