You can split PDF documents based on manually defined page ranges with multitude of available options such as odd/even pages, reverse order, page ranges, page sets, etc.
Syntax:
pagemaster (-s or --split)<input>,<pagelist1>,<pagelist2>
To split a PDF document by pages, specify -s (or --split) on the command-line followed by a list of one or more PDF documents to split.
The following command-line will split 'in.pdf' and all PDF documents in 'MyPDFs' folder into individual PDF documents:
pagemaster -s in.pdf MyPDFs -o OutDir
The last option (-o OUT) instructs PageMaster to store all resulting documents in the new folder called 'OutDir'.
The splitting process can be fine-tuned with a 'page list' parameter that can immediately follow the input PDF filename (after comma).
For example, the following command-line will extract the first five pages from 'in.pdf':
pagemaster -s in.pdf,1-5
For a detailed description of how to specify 'page-lists' as part of 'Split-By-Page' operation, please refer to Section 4.8 of this user manual. The following are some additional examples of how to use 'page-lists' to customize the splitting process:
Split 'in.pdf' into a set of PDF documents containing 2 pages each:
pagemaster -s in,2x
Split 'in.pdf' into two parts. The first PDF will contain pages 1 through 10, and the second document contains the remainder of the document:
pagemaster -s in,1-10,11-
The above command-line will break 'in.pdf' into several parts: A PDF containing pages 1 through 5, a PDF containing pages 6 to 10 (in the reverse order), and a set of odd pages in the page rage from page 15 to the last page in the document:
pagemaster -s in,1-5,10-6,15-odd
Generally, by setting the '--digits' option, all numbers will be replaced by numbers with that number of digits: --digits <numdigits>
Even if the last document contains less than (<start page> + <# pages per doc>) pages
Most PDF utilities offer the ability to break documents by first or second level bookmarks only. With PDF PageMaster, you can split PDF documents by any bookmark level while retaining bookmarks and links in output files.
--bybookmarks <depth> will cause PDF PageMaster to split the pages of the given file based on the destinations of bookmarks that are at that depth in the bookmark tree. (Please note that pagelists are ignored if the '--bybookmarks' option is specified.)
--bybookmarks <depth1>,<depth2> will cause PDF PageMaster to split the pages of a given file based on the destinations of bookmarks that are at a depth between depth1 and depth2 in the bookmark tree.
Split 'in.pdf' based on the destinations of the root bookmarks (usually chapters etc.):
pagemaster -s \--bybookmarks 1 in.pdfpagemaster -s \--bybookmarks 1,1 in.pdf
Split 'in.pdf' based on root bookmark as well as the second level bookmark destinations:
pagemaster -s \--bybookmarks 1,2 in.pdf
Split 'in.pdf' based on 3rd level bookmark destinations:
pagemaster -s \--bybookmarks 3 in.pdf
The file is named by the pages that it contains
<original file name>_<firstpage>-<lastpage> where firstpage is never larger than lastpage
You can specify the size of your PDF files and PDF PageMaster will split the PDFs to the closest possible kilobyte.
--byfilesize <filesize> will cause PDF PageMaster to attempt to split with the file size of each created file being less than <filesize> KB. (It may not succeed in doing that if any one page is larger than <filesize> KB.)
Split largepdf.pdf into files of size 1000 KB or less:
pagemaster -s \--byfilesize 1000 largepdf.pdf
Split largepdf.pdf into files of size 232 KB or less:
pagemaster -s \--byfilesize 232 largepdf.pdf
The file is named by the pages that it contains
<original file name>_<firstpage>-<lastpage> where firstpage is never larger than lastpage
Did you find this helpful?
Trial setup questions?
Ask experts on DiscordNeed other help?
Contact SupportPricing or product questions?
Contact Sales