Differences
This shows you the differences between two versions of the page.
docs:pdf:create_pdf_from_select_pages [2007/05/14 16:49] – created billh | docs:pdf:create_pdf_from_select_pages [2008/08/03 00:25] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Create PDF from Select Pages ====== | ||
+ | * requires pdftk | ||
+ | * Join in1.pdf and in2.pdf into a new PDF, out1.pdf< | ||
+ | pdftk in1.pdf in2.pdf cat output out1.pdf | ||
+ | or (using handles): | ||
+ | |||
+ | pdftk A=in1.pdf B=in2.pdf cat A B output out1.pdf | ||
+ | |||
+ | or (using wildcards): | ||
+ | |||
+ | pdftk *.pdf cat output combined.pdf | ||
+ | </ | ||
+ | * Remove 'page 13' from in1.pdf to create out1.pdf< | ||
+ | pdftk in.pdf cat 1-12 14-end output out1.pdf | ||
+ | |||
+ | or: | ||
+ | |||
+ | pdftk A=in1.pdf cat A1-12 A14-end output out1.pdf | ||
+ | </ |