Hide/Disable download button on Chrome PDF Viewer

前端 未结 3 1293
遇见更好的自我
遇见更好的自我 2021-01-15 04:30

I\'m looking for a way to hide or disable the download button that appears in the Chrome PDF viewer. I have disabled the print button using the protection script of fpdf(htt

3条回答
  •  天命终不由人
    2021-01-15 05:19

    Since you are delivering pdf file directly into the browser, displayed using Adobe Reader ActiveX, how can it be possible to prevent file download, since the files are displayed after downloaded into your temp directory?

    So it is not possible using ANY JavaScript library.

    The only way to secure your master PDF files is by creating Images for each page and present those to the user on the web via your own interface (html, flash etc).

    You may use ImageMagick along with GhostScript for this.

    You may go through veryinteractivepeople

    Hope this helps. (:

提交回复
热议问题