Hello,
When I’m merging two tagged pdf files
The merged file is loosing his tags.
Is there anything I can do with it?
here is my code
Document pdfDocument1 = new Document(“1.pdf”);
Document pdfDocument2 = new Document( “2.pdf”);
pdfDocument1.Pages.Add(pdfDocument2.Pages);
pdfDocument1.Save(“Merged.pdf”);
Thank you,