opening a large pdf files on web

后端 未结 5 1566
终归单人心
终归单人心 2021-01-15 12:56

I have a 27MB pdf file which is hosted in web. When I try to open it, it takes times to open it. So Is there any way where I can view this large pdf file a bit fast. I guess

5条回答
  •  我在风中等你
    2021-01-15 13:38

    To supplement Kurt's comment. I assembled this command line and it seemed to do the trick for generating an optimized PDF file:

    gs -q -P- -dBATCH -dNOPAUSE -sDEVICE=pdfwrite -dFastWebView -sOutputFile=optimized.pdf input.pdf 
    

    You can check the output with pdfinfo optimized.pdf where you should see Optimized: yes in the output

提交回复
热议问题