Use .NET library to split PDF files into parts. You can integrate the extracted PDF pages with other data and, as a result, get documents of the form and content that you require. Splitting PDF into parts makes it easier to collaborate on PDF files.
Unlock the power of document organization with a comprehensive C# library designed to split PDF documents into separate files. Whether you are integrating PDF pages into automated information systems or databases, this standalone solution for .NET provides a seamless and efficient way to divide PDF files.
Choose from the following page extraction modes:
After splitting the PDF document, export the results to the preferred file format. Our C# library operates independently, without the need for additional installations of Microsoft Word, Acrobat Reader, or other software.
Discover the library's capabilities through the interactive demo. Explore the C# code performing document splitting: upload your PDF document, set operation options, and independently verify the result. Try it today and experience the efficiency of flexible PDF document splitting in .NET projects. The following example shows how to split PDF using C#:
dotnet add package Aspose.Words
Copy
using Aspose.Words;
var doc = new Document("Input.pdf");
for (var page = 0; page < doc.PageCount; page++)
{
var extractedPage = doc.ExtractPages(page, 1);
extractedPage.Save($"Output_{page + 1}.pdf");
}
There are three alternative options to install "Aspose.Words for .NET" onto your system. Please choose one that resembles your needs and follow the step-by-step instructions:
Our product is fully cross-platform and supports all major .NET implementations:
As far as .NET code doesn't depend on the underlying hardware or operating system, but only on a Virtual Machine, you are free to develop any kind of software for Windows, macOS, Android, iOS and Linux. Just make sure you have installed the corresponding version of .NET Framework, .NET Core, Windows Azure, Mono or Xamarin.
We recommend using Microsoft Visual Studio, Xamarin, and MonoDevelop integrated development environments to create C#, F#, VB.NET applications.
Fore more details please refer to Product Documentation.