Difference between revisions of "PDF Tools"
From RobolaboWiki
(Created page with " <pre> pdfnup original.pdf --nup 1x1 --pages 1,3,5,7,21-25 --outfile subset.pdf </pre>") |
|||
| Line 1: | Line 1: | ||
| + | <!--__NOTOC__--> | ||
| + | <h1> Merge PDFs </h1> | ||
| + | <pre> | ||
| + | gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=OUTPUT_FILE1.pdf INPUT_FILE1.pdf INPUT_FILE2.pdf | ||
| + | </pre> | ||
| + | <h1> Cut PDFs </h1> | ||
<pre> | <pre> | ||
| − | pdfnup | + | pdfnup INPUT_FILE.pdf --nup 1x1 --pages 1,3,5,7,21-25 --outfile OUTPUT_FILE.pdf |
</pre> | </pre> | ||
Revision as of 05:13, 2 June 2012
Merge PDFs
gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=OUTPUT_FILE1.pdf INPUT_FILE1.pdf INPUT_FILE2.pdf
Cut PDFs
pdfnup INPUT_FILE.pdf --nup 1x1 --pages 1,3,5,7,21-25 --outfile OUTPUT_FILE.pdf