Split PDF File into Individual Pages
Contents
[
Hide
]To split a PDF file into single page PDF files, loop through the Document object’s Pages collection. For each iteration, create a new Document object and add the individual Page to the empty document. Then save the new PDF using the save method.
The following code snippet shows how to split PDF file to individual pages.