[转]pdfselect:PDF 分割 提取 奇数页 偶数页 逆向排序

less than 1 minute read

PDFSELECT1.1
Usage: pdfselect [options] infile [outfile]
Options:
-p N, –pages N Intervals of pages to be selected,if N=0 ,the inFile wil
l be split to many one page pdf to outFile driver.
-q, –quiet Do not print progress messages.
-e, –even Select even pages It may be used in conjunction with the
other page selection options to select the even pages from a range of pages.
-o, –odd Select odd pages. It may be used in conjunction with the
other page selection options to select the even pages from a range of pages.
-r, –reverse The -r option causes pdfselect to output the selected pa
ges in reverse order.
-h, –help Print this message and exit.
-V, –version Show version number.

Example:
Split PDF:pdfselect -p 0 c:\a.pdf d:\
(分割一个给定的PDF)
Reverse PDF:pdfselect c:\a.pdf c:\b..pdf
(对一个给定的PDF进行逆向排序输出)
Extract given pages:pdfselect -p 2-3,8-7 c:\a.pdf c:\b..pdf
(从给定PDF中提取指定页)
Extract given pages and reverse it:pdfselect -r -p 5,2-3,8-7 c:\a.pdf c:\b..pdf
(从给定PDF中提取指定页,并进行逆向排序)
Extract odd pages:pdfselect -o c:\a.pdf c:\b..pdf
(提取给定PDF的奇数页)
Extract odd pages and reverse it:pdfselect -r -o c:\a.pdf c:\b..pdf
(提取给定PDF的奇数页,并进行逆向排序)
Extract even pages:pdfselect -e c:\a.pdf c:\b..pdf
(提取给定PDF的偶数页)
Extract even pages and reverse it:pdfselect -r -e c:\a.pdf c:\b..pdf
(提取给定PDF的偶数页,并进行逆向排序)

From:http://blog.donews.com/rocsky/archive/2005/07/26/481030.aspx

Categories:

Updated: