Horje
c# itext 7 pdf add pdf Code Example
c# itext 7 pdf add pdf
PdfDocument pdf = new PdfDocument(new PdfWriter(dest));
PdfMerger merger = new PdfMerger(pdf);

//Add pages from the first document
PdfDocument firstSourcePdf = new PdfDocument(new PdfReader(SRC1));
merger.merge(firstSourcePdf, 1, firstSourcePdf.getNumberOfPages());

//Add pages from the second pdf document
PdfDocument secondSourcePdf = new PdfDocument(new PdfReader(SRC2));
merger.merge(secondSourcePdf, 1, secondSourcePdf.getNumberOfPages());

firstSourcePdf.close();
secondSourcePdf.close();
pdf.close();




Csharp

Related
how to make particle in unity Code Example how to make particle in unity Code Example
add all elements in a list c# Code Example add all elements in a list c# Code Example
oncollisionenter2d Code Example oncollisionenter2d Code Example
delete the particular line in files in c# Code Example delete the particular line in files in c# Code Example
crop bitmap image c# Code Example crop bitmap image c# Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11