How to merge multiple PDF files to a PDF on Linux?
Posted on In QAconvert
seems works not very well when merging PDFs. The quality is low. Any other better methods to merge multiple PDF files to a single PDF on Linux?
ghostscript works the best for me on merging PDFs:
gs -q -sPAPERSIZE=letter -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -dPDFSETTINGS=/prepress
-sOutputFile=out.pdf in1.pdf in2.pdf in3.pdf
merges in{1..3}.pdf to out.pdf.
solution:
use pdfsam