Split a PDF and Extract Pages in C#
IronPDF allows us to split up PDF documents; extracting single pages or page ranges into new IronPdf.PdfDocument
objects.
The C# .NET API is IronPdf.PdfDocument.CopyPage
, and it can also be thought of as Extracting Pages from one or more PDF files into a new document.
How to Split PDF Files in C#
- Download and install C# library to split PDF document
- Load an existing or create multiple pages PDF in C#
- Utilize
CopyPage
method to copy pages from original PDF - Save the split pages with
SaveAs
method - View PDF files in specified location