I have on workbook with various chapter which is in pdf format, and I am going to split it.
chapter vise splitting was done.
but,
in workbook their is first page having student information .
now I want to add that fisrt page as a first page of ever splitted file of workbook.
For spliting workbook I am using iTextSharp.dll, and merge pages using intervals as
SplitAndSaveInterval(workbookpath, updateWBFile, startpage, interval);
startpage = chapter first page no.
interval = number of page upto next chapter
please help me for add first page into all splitted file
Leon DPosted Jun 11, 2017, 11:47 PM
Mohamed AbedallahPosted Jun 22, 2017, 10:07 AM
If that is the case, you can do save the first page of the original document as PDF file, then merge each this file with the rest of the split chapters PDFs.
With LEADTOOLS you can do the merge function using code similar to this:
Leadtools.Pdf.PDFFile firstPdf = new Leadtools.Pdf.PDFFile("FirstPage.pdf");
firstPdf.MergeWith(new string[] { "FirstChapter.pdf" }, "FirstChapterfixed.pdf");
pooja ghatePosted Jun 17, 2017, 3:16 AM
Leon DPosted Jun 13, 2017, 9:09 PM
pooja ghatePosted Jun 12, 2017, 8:04 AM
Evaluation Warning : The document was created with Spire.PDF for .NET.
Rajkiran SwainPosted Jun 10, 2017, 12:56 PM
pooja ghatePosted Jun 10, 2017, 4:12 AM
Ravi SangtaniPosted Jun 10, 2017, 3:52 AM