pdftk split pdf with multiple pages but total size grew

后端 未结 4 893
梦毁少年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:14

    You may use pdftk and try

    pdftk source.pdf cat 1-100 output try1.pdf
    pdftk source.pdf cat 101-end output try2.pdf
    

提交回复
热议问题