Hello,
I'm trying to create a PDF using PdfDocument document = new();
then I'm adding the link into the PDf like this:
//Create a link for image file
PdfFileLinkAnnotation fileLinkAnnotation = new PdfFileLinkAnnotation(bounds, @"..\..\Data\logo.png");
//Add this annotation to a page.
page.Annotations.Add(fileLinkAnnotation);
as it shows in this link: https://help.syncfusion.com/file-formats/pdf/working-with-hyperlinks#working-with-external-document-navigation
no luck seeing (viewing) the link on the PDfViewer.
What I'm doing wrong?
Also I Try to create a Weblink like this link: https://blazor.syncfusion.com/demos/pdf/interactive-features?theme=fluent on the InteractiveFeaturesService.cs class, but I can't click it on the PdfViewer, howerver I can when downloading it.
Can you help me out on how to create a Link on the PDF to open a new PDF already created as a new window or something similar?
I really appreciate it.
Thanks for you help,
Luis Campuzano