I've 3 pdfs containing bookmarks.
I merge the 3 files but I loose the bookmarks of the second and thirth files.
Is it possible to preserve all the bookmarks at the right place?
Thanks in advance
Jean-Marie
My code:
Dim pdfDocument1 As New Document("doc1.pdf")
Dim pdfDocument2 As New Document("doc2.pdf")
Dim pdfDocument3 As New Document("doc3.pdf")
pdfDocument1.Pages.Add(pdfDocument2.Pages)
pdfDocument1.Pages.Add(pdfDocument3.Pages)
pdfDocument1.Save("output.pdf")
I use the 7.8.0.0 version of the aspose.pdf.dll