Hello,
I'm using the MergeDocument method,
Trying to create 2 new files from one large file.
The goal is to divide the document into 2 documents.
The big file contains 60 pages, I'm trying to create a split from page 1 to 30 and from 31 to 60
My code looks like this:
PdfDocument bigPdf = new PdfDocument ("C: \\ temp \\ big.pdf");
MergeDocument pdf1 = new MergeDocument (bigPdf, 1, 30);
MergeDocument pdf2 = new MergeDocument (bigPdf, 31, 29);
The problem is that the newly created files remain the same weight as the original file.
what can be done?
Thanks in advance, Zohar