以下是规范方面的内容: 通过在页面上放置链接注释来创建链接。链接注释由 Rect 键或一组四边形表示。假设您正在使用矩形。为了放置链接,您至少需要这样的字典:
<< /Type /Annot /Subtype /Link /Rect [ x1 y1 x2 y2 ] >>
(x1, y1) 和 (x2, y2) 描述了链接活动区域所在矩形的角。
为此,这应该是 PDF 中的间接对象,并从页面的 Annots 数组中引用。
如果您可以创建它,您将在页面上获得一个无处可去的链接。
要使链接到达某个地方,您需要在链接 annot 中使用 /Dest 或 /A 条目(但不能同时使用两者)。/Dest 是用于页面级导航的较旧工件 - 您不会使用它。相反,使用 /A 条目,它是一个动作字典。因此,如果您想导航到网址http://www.google.com,您可以让您的注释看起来像这样:
<< /Type /Annot /Subtype /Link /Rect [ x1 y1 x2 y2 ]
/A << /Type /Action /S /URI /URI (http://www.google.com) >>
>>
我无法具体帮助您如何在 iTextSharp 中执行此操作。我不是特别喜欢他们使用的模型或抽象。我为 Atalasoft 编写了一个 PDF 工具包,我将向您展示如何在我自己的工具包中做到这一点。再一次,我毫不掩饰这是一个商业产品,这是我谋生的工作。我只是想让你看看还有其他可用的选项。
// make a document, add a font, get its metrics
PdfGeneratedDocument doc = new PdfGeneratedDocument();
string fontResource = doc.Resources.Fonts.AddFromFontName("Times New Roman");
PdfFontMetrics mets = doc.Resources.Fonts.Get(fontResource).Metrics;
// make a page, place a line of text
PdfGeneratedPage page = doc.Pages.AddPage(PdfDefaultPages.Letter);
PdfTextLine line = new PdfTextLine(fontResource, 12.0, "Visit my web site.",
new PdfPoint(72, 400));
page.DrawingList.Add(line);
// get the bounds of the text we place, make an annotation
PdfBounds bounds = mets.GetTextBounds(12.0, "Visit my web site.");
bounds = new PdfBounds(72, 400, bounds.Width, bounds.Height);
LinkAnnotation annot = new LinkAnnotation(bounds, new PdfURIAction(new URI("my url")));
page.Annotations.Add(annot);
// save the content
doc.Save("finaldoc.pdf");
唯一“棘手”的是页面上的内容与链接注释之间存在脱节 - 但这是因为 Acrobat 建模链接的方式。如果您正在修改现有文档,您将从现有文件/流构造一个 PdfGeneratedDocument,添加注释然后保存。