How to relink hyperlinks in the HTML to PDF Converter file in WebForms?
To relink hyperlinks from HTML to PDF, convert the HTML to PDF by using the HtmlToPdfResult and then append the PDF file that has to be navigated. Hyperlinks are converted to the PdfDocumentLinkAnnotation in PDF. So, the file can be loaded and added to the page in the PdfDestination by using the PdfDocumentLinkAnnotation.
The following code example displays the same.
- HTML TO PDF Conversion.
C#
using (HtmlConverter htmlConverter = new HtmlConverter()) { htmlConverter.EnableHyperlinks = true; //Converts HTML to PDF. using (HtmlToPdfResult result = htmlConverter.Convert(path, ImageType.Metafile, (int)width, -1, Syncfusion.HtmlConverter.AspectRatio.None)) { if (result.RenderedImage == null) return; // Draws metafile in the PdfPage. result.Render(page, metafileFormat); } }
- Append the Document and Relink by using the PdfDocumentLinkAnnotation.
C#
//Loads the document to be appended. PdfLoadedDocument document = new PdfLoadedDocument (Bookmark.pdf")); pdfDoc.Append(document); //Adds the Document Link. for (int i = 0; i < pdfDoc.Pages[0].Annotations.Count; i++) { PdfDocumentLinkAnnotation annotation = pdfDoc.Pages[0].Annotations[i] as PdfDocumentLinkAnnotation; annotation.Destination = new PdfDestination(pdfDoc.Pages[i]); }
Sample Link: https://www.syncfusion.com/downloads/support/directtrac/general/RelinkHtmltoPdf1294067253.zip
Note:
A new version of Essential Studio® for ASP.NET is available. Versions prior to the release of Essential Studio® 2014, Volume 2 will now be referred to as a classic versions.The new ASP.NET suite is powered by Essential Studio for JavaScript providing client-side rendering of HTML 5-JavaScript controls, offering better performance, and better support for touch interactivity. The new version includes all the features of the old version, so migration is easy.
The Classic controls can be used in existing projects; however, if you are starting a new project, we recommend using the latest version of Essential Studio® for ASP.NET. Although Syncfusion® will continue to support all Classic Versions, we are happy to assist you in migrating to the newest edition.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion®, you can try our 30-day free trial to check out our other controls. If you have any queries or require clarifications, please let us know in the comments section below.
You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!