Some test text!

Search
Hamburger Icon

iOS / Guides / Split pages

Split PDF pages on iOS

To split a PDF document into multiple pages.

PTPDFDoc *doc = [[PTPDFDoc alloc] initWithFilepath: filename];
int page_num = [doc GetPageCount];
for (int i=1; i<=page_num; ++i)
{
  PTPDFDoc *new_doc = [[PTPDFDoc alloc] init];
  [new_doc InsertPages: 0 src_doc: doc start_page: i end_page: i flag: e_ptinsert_none];
  [new_doc SaveToFile: [output_filename stringByAppendingFormat: @"_split_page_%d.pdf", i] flags: e_ptlinearized];
}

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