Split PDF pages in UWP

To split a PDF document into multiple pages.

C#

1PDFDoc doc = new PDFDoc(fileName);
2int pageNumber = doc.GetPageCount();
3for (int i = 1; i <= pageNumber; ++i)
4{
5 PDFDoc newDocument = new PDFDoc();
6 newDocument.InsertPages(0, doc, i, i, PDFDocInsertFlag.e_none);
7 await newDocument.SaveAsync(outputFileName + "_split_page_" + i + ".pdf", SDFDocSaveOptions.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