Hey. I have two pdf files.
Tell me please, is it possible to copy one page from file#1 and insert this page to file#2 between 4 and 5 pages?
How to do that using Gembox.PDF?
Thanks
Hey. I have two pdf files.
Tell me please, is it possible to copy one page from file#1 and insert this page to file#2 between 4 and 5 pages?
How to do that using Gembox.PDF?
Thanks
Hi Dekan,
Try this:
using var document1 = PdfDocument.Load("file1.pdf");
using var document2 = PdfDocument.Load("file2.pdf");
document2.Pages.InsertClone(4, document1.Pages[0]);
document2.Save("output.pdf");
Does this solve your issue?
Regards,
Mario