Articles in this section
Category / Section

How to insert pages from an existing PDF into the PdfLoadedDocument?

1 min read

How to insert pages from an existing PDF into the PdfLoadedDocument?

Pages from an existing PDF document can be inserted into PdfLoadedDocument by using the ImportPage() method.

Please refer to the following code example to insert the existing pages into a loaded document.

C#

//Load the documents
PdfLoadedDocument loadeddocument1 = new PdfLoadedDocument (@"input1.pdf");
PdfLoadedDocument loadeddocument2 = new PdfLoadedDocument(@"input2.pdf");
 
//Import the pages.
loadeddocument1.ImportPage(loadeddocument2, 1);
 
//Save the file
loadeddocument1.Save("Output.pdf");
 
//Close the documents
loadeddocument1.Close(true);
loadeddocument2.Close(true);

 

Sample link:

https://www.syncfusion.com/downloads/support/directtrac/general/ze/PdfSample1507075856

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied