跳转至

工具1:linux自带的pdfunite

合并多个pdf文件,最后一个是合并后输出的文件的名称
pdfunite file1.pdf file2.pdf filen.pdf all.pdf

工具2:pdftk

#安装pdftk
sudo apt-get install pdftk

#合并文件
pdftk 1.pdf 2.pdf 4.pdf n.pdf output allfile.pdf

#只打印单数页面
pdftk file.pdf cat 1-endodd output odd-file.pdf
#只输出双数页面
pdftk file.pdf cat 1-endeven output even-file.pdf
#只输出指定页码的页面
pdftk file.pdf cat 1-3 6-end output part-file.pdf
#转换成单页面PDF
pdftk file.pdf burst
#旋转pdf方向是以上北为基准,第5-8页,east,就是向右转90度。第1-4页向左(west)旋转90度,同时把5-8页按顺序排在1-4页之前。
pdftk file1.pdf cat 5-8east 1-4west ouput turn-file.pdf
#提取PDF中的图片(分别是提出png、jpg、tiff格式)
pdfimages -png file.pdf img 
pdfimages -jpg file.pdf img
pdfimages -tiff file.pdf img
#多文件操作(提取文件1的1-8页逆时针旋转90度,文件3的奇数页,文件2的1-9页,文件1第9到最后一页。)
pdftk A=file1.pdf B=file2.pdf C=file3.pdf cat A1-8west C1-endodd B1-9 A9-end output all.pdf
回到页面顶部