Winnovative Software Logo

 HTML to PDF Converter - Excel Library - ASP.NET Charts - RTF to PDF Converter
 PDF Merge and Split - PDF Security - PDF Viewers - PDF to Text - Images Extractor

 
Skip Navigation Links
 

PDF Split Library for .NET

The PDF Split library for .NET can be linked into any .NET application, either ASP.NET web sites or Windows Forms applications, to add pdf split capabilities to your application.

With Winnovative PDF Split for .NET you can extract a range of pages from a PDF document or you can split the PDF document in a number of chunks, each chunk containing a specified number of pages.

If you need a ready to use tool for splitting and extracting your PDF documents you can use our command line utility. It is a simple application of the split library.

The integration is extremely easy and no additional installation  is necessary in order to get started. It's just a .NET assembly that you have to reference in your application.  

Features

PDF Split for .NET Box
Easy integration, no installation or setup is necessary on the server
Delivered as a single strong named .NET assembly (can be installed in GAC)
Can be deployed on the server by simple copy (xcopy deployment support)
Can be used from ASP.NET, Windows Forms, WPF, Web Service or Console applications
The same assembly can be used both on 32-bit and 64-bit Windows servers
Split PDF documents from files and streams
Save extracted documents in memory or in files
Command line sample with full C# source code
Extract a range of pages from a PDF document
Get number of pages of a PDF document
Split in sections of the specified length


Code Sample

1: PDFSplitManager splitManager = new PDFSplitManager();
2:  
3: if (repeatToEnd)
4:     splitManager.ExtractPagesFromFileToFile(srcPdfFile, outFile,startPageNumber,
                                        splitPageCount, true);
5: else
6:     splitManager.ExtractPagesFromFileToFile(srcPdfFile, outFile,startPageNumber, 
                                        splitPageCount, repeatCount);