hans

hans

【Others】Ubuntu处理PDF文件,拆分和合并


安装:

sudo apt install ghostscript

参数介绍:

gs -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -dCompatibilityLevel=1.4
-dPDFSETTINGS=/screen -sOutputFile=new_file.pdf original_file.pdf

PDFSETTINGS 参数说明:
/screen - 最低精度方式输出,因为屏幕展示所需的精度很低
/ebook - 中等精度输出
/printer and /prepress - 均表示高精度输出,因为打印需要很高的精度,文件尺寸当然也最大,甚至超过原始文件

合并:

gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=foo.pdf -f foo1.pdf foo2.pdf

拆分:

gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=foo.pdf -dFirstPage=2 -dLastPage=3 input.pdf
Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.