I am using TaggedContent to set Language and Title properties of Pdf as follows:
Aspose.Pdf.Tagged.ITaggedContent taggedContent = pdfDocument.TaggedContent;
taggedContent.SetLanguage(“en-US”);
taggedContent.SetTitle(string.Empty);
(see attachment Program.zip (465 Bytes))
This results in broken hyperlinks in the pdf as described in attachments:
- Aspose Pdf TaggedContent Issues.png (393.0 KB)
- Hyperlink has extra text after updating TaggedContent.jpg (33.7 KB)
- input.pdf (121.5 KB)
- output.pdf (120.8 KB)
Thanks in advance.