EVO PDF Split Library for .NET

With EVO 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. 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. If you need a ready to use tool for splitting and extracting your PDF documents you can use our simple command line utility.

DownloadDownload ContactSupport
  • 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
  • Merge 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
  • Merge PDF bookmarks
  • 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);