Some test text!

Search
Hamburger Icon

Python / Guides / Split pages

Split PDF pages in Python

To split a PDF document into multiple pages.

doc = PDFDoc(filename)

page_num = doc.GetPageCount()
for i in range(1, page_num):
  new_doc=PDFDoc()
  new_doc.InsertPages(0, doc, i, i, PDFDoc.e_none)
  new_doc.Save(output_filename + "_split_page_" + str(i) + ".pdf", SDFDoc.e_linearized)
  new_doc.Close()

Merge, Copy, Delete, and Rearrange PDF Pages
Full code sample which illustrates how to copy pages from one document to another, how to delete, and rearrange pages and how to use ImportPages().

Get the answers you need: Chat with us