注释iText支持不同风格的注释。 u 文本注释: 你可以添加一小段文本到你的文档中,但它并非文档内容的一部分,注释有标题和内容: Annotation a = new Annotation( "authors", "Maybe it's because I wanted to be an author myself that I wrote iText."); u 外部链接注释: 你需要指定一个可点击的矩形和一个字符串(URL描述)或URL对象: Annotation annot = new Annotation(100f, 700f, 200f, 800f, new URL("http://www.lowagie.com")); Annotation annot = new Annotation(100f, 700f, 200f, 800f, "http://www.lowagie.com"); u 外部PDF文件链接注释: 你需要指定一个可点击的矩形和一个字符串(文件名称)和目的文件或页码。 Annotation annot = new Annotation(100f, 700f, 200f, 800f, "other.pdf", "mark"); Annotation annot = new Annotation(100f, 700f, 200f, 800f, "other.pdf", 2); u 指定行为链接注释 你需要指定一个可点击的矩形和一个指定的行为: Annotation annot = new Annotation(100f, 700f, 200f, 800f, PdfAction.FIRSTPAGE); u 应用程序链接注释: 你需要指定一个可点击的矩形和一个应用程序: Annotation annot = new Annotation(300f, 700f, 400f, 800f, "C://winnt/notepad.exe", null, null, null); 我们无须在页面上指定一个位置,iText会内部处理。你能够看到iText添加文本注释在页面上当前位置下面,第一个在段后第一行下面,第二个在短句结束处的下面。 所有其他注释需要指定想匹配的矩形区域,在示例代码0304中,我们画了一些正方形(使用的函数将在第十章中介绍),为每个正方形添加了一些链接注释。 |