Archive for November 4th, 2006

Merging PDFs

November 04th, 2006 | Category: Linux, Opensource, Tech

Need to make multiple PDFs into one? Here is an easy way to do it with Ghostscript:

gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=finished.pdf file1.pdf file2.pdf

After scanning a few documents, I converted the resulting individual PNGs into PDFs and then used the command above to make a single, multi-page PDF.

Here’s a few other apps I discovered for manipulating for manipulating PDFs:

pdftk
mbtPDFasm
multivalent

No comments