Hello,
It seems, that internal links stop working after I copy PDF pages to new PDF file.
The source PDF file, the screenshot image with one highlighted link, that stop working and my code snippet are below.
Could upi please tell me if I could change my code snippet to avoid this issue?
Mikhael
petstore.pdf (146.7 KB)
image.png (116.1 KB)
Dim sSrcPdf = "C:\In\petstore.pdf"
Dim sOutPDF = "C:\Out\aspose out.pdf"
Using pdfiumDoc = New Aspose.Pdf.Document(sSrcPdf)
Using pdfiumDocOut = New Aspose.Pdf.Document()
pdfiumDocOut.Pages.Add(pdfiumDoc.Pages)
pdfiumDocOut.Save(sOutPDF)
End Using
End Using