JavaScript is not enabled in your browser. You must enable JavaScript to browse this website. See here for detailed instruction on how to enable JavaScript.
PDF Splitter allows you to split an existing PDF file into multiple small PDF files.
//Load an existing PDF file specified by pdfFileName PdfDocument doc = new PdfDocument(pdfFileName); //Split doc into three small documents covering page //0 to 1, 2 to 4 and 4 to the end (all page numbers are //zero based) PdfDocument[] docs = doc.Split(1, 4); //Now you can do anything with the "baby" PDF files such //as modifying, saving, merging, cloning, etc. ....
'Load an existing PDF file specified by pdfFileName Dim doc As New PdfDocument(pdfFileName) 'Split doc into three small documents covering page '0 to 1, 2 to 4 and 4 to the end (all page numbers are 'zero based) Dim docs As PdfDocument() = doc.Split(1, 4) 'Now you can do anything with the "baby" PDF files such 'as modifying, saving, merging, cloning, etc. ....
Detailed documentation and sample code about this feature can be found in the download package.
Product Documentation
All features are explained in great details in the product documentation. It also contains complete reference information for each type, property or method;
Samples
The download package contains a wide variety of samples with full C# and Visual Basic.NET source code that demonstrate how to use different feature of the EO.Pdf library.
Technical Support
Still have questions? Post in our support forum or contact us and we will answer them quickly. Our turn around time is among the best in the industry.