安裝:
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