Split PDF pages on Server/Desktop

To split a PDF document into multiple pages.

1$doc = new PDFDoc($filename);
2$page_num = $doc->GetPageCount();
3for ($i = 1; $i <= $page_num; ++$i)
4{
5 $new_doc = new PDFDoc();
6 $new_doc->InsertPages(0, $doc, $i, $i, PDFDoc::e_none);
7 $new_doc->Save($output_filename."_split_page_".$i.".pdf", SDFDoc::e_linearized);
8 $new_doc->Close();
9}

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().

Did you find this helpful?

Trial setup questions?

Ask experts on Discord

Need other help?

Contact Support

Pricing or product questions?

Contact Sales