想要将多个 PDF 合并成一个档案,有很多套件都可以使用,此篇列一些可以自己决定要怎么用~
Linux 将多个 PDF 档案合并成一个
想要将多个 PDF 合并成 out.pdf,有下述几个作法:
- pdfunite file_1.pdf file_2.pdf out.pdf
- qpdf --empty --pages .pdf -- out.pdf
- gs -q -sPAPERSIZE=letter -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=out.pdf file_1.pdf file_2.pdf # 此作法的生出的 PDF 容量比较大
相关网页
- Merge / convert multiple PDF files into one PDF
- How to merge PDF files on Linux
- How to merge pdf:s using Imagemagick (resolution problem)