pdftk split pdf with multiple pages but total size grew

后端 未结 4 891
梦毁少年i
梦毁少年i 2020-12-30 22:24

with php i have to split a single pdf file with multiple pages inside it to a lot of PDF file with one page per file. I use pdftk and works fine, but every pdf created for e

4条回答
  •  鱼传尺愫
    2020-12-30 23:19

    You could always specify the compress option - for example:

    pdftk input.pdf burst output output_%02d.pdf compress
    

    Note that pdftk just copies the content of your PDF files from the inputs into the outputs, and can't do very much to optimize away bloat. So if your input PDFs are large/complicated, your output PDFs will be also. Also note that any fonts embedded in the document may end up being duplicated in each output document, taking up more space.

提交回复
热议问题