Split PDF pages in Xamarin

To split a PDF document into multiple pages.

C#

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

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