Some test text!

Search
Downloads
Chat with us
Discord Logo
Hamburger Icon

Xamarin / Guides / Split pages

Get started

Samples

Basic operations

Learn More

Viewer

UI customization

Annotation

Collaboration

MS Office

Conversion

PDF/A

Forms

Generate

Page manipulation

Overview Thumbnail browser Create a thumbnail Create pages Insert pages Remove pages Crop pages Rotate pages Reorder pages Split pages Page labels editor (Android) Samples APIs

Edit page content

Extraction

Digital signature

Search

Bookmarks

Compare files

Optimization

Layers (OCGs)

Measurement

Print

Redaction

Security

Portfolios

Low-level PDF API

Split PDF pages in Xamarin

To split a PDF document into multiple pages.

C#

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

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

Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales