彩票走势图

Aspose.Pdf使用教程:在现有的PDF文件中添加注释

原创|使用教程|编辑:郝浩|2013-03-11 13:06:51.000|阅读 1555 次

概述:要在一个PDF页中使用Aspose.Pdf添加注释,必须要使用Add方法将这个需要添加的注释添加到Annotations注释集中。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

这个地方的所说的注释包含在每个特定页的注释集中。因为每个PDF页都有自己单独的注释集,所以这个注释集也只是收录这个PDF页中的注释。要在一个PDF页中使用Aspose.Pdf添加注释,必须要使用Add方法将这个需要添加的注释添加到Annotations注释集中。所以第一步是创建一个新的注释,然后打开PDF文件,将之添加到该页的注释集中。

》》》下载Aspose.Pdf试用版

下面是具体的代码示例:

C#

//open document
Document pdfDocument = new Document("input.pdf");
//create annotation
TextAnnotation textAnnotation = new TextAnnotation(pdfDocument.Pages[1], new Aspose.Pdf.Rectangle(200, 400, 400, 600));
textAnnotation.Title = "Sample Annotation Title";
textAnnotation.Subject = "Sample Subject";
textAnnotation.State = AnnotationState.Accepted;
textAnnotation.Contents = "Sample contents for the annotation";
textAnnotation.Open = true;
textAnnotation.Icon = TextIcon.Key;
Border border = new Border(textAnnotation);
border.Width = 5;
border.Dash = new Dash(1, 1);
textAnnotation.Border = border;
textAnnotation.Rect = new Aspose.Pdf.Rectangle(200, 400, 400, 600);
//add annotation in the annotations collection of the page
pdfDocument.Pages[1].Annotations.Add(textAnnotation);
////save output file
pdfDocument.Save("output.pdf");

VB.NET

'open document
Dim pdfDocument As New Document("input.pdf")
'create annotation
Dim textAnnotation As New TextAnnotation(pdfDocument.Pages(1), New Aspose.Pdf.Rectangle(200, 400, 400, 600))
textAnnotation.Title = "Sample Annotation Title"
textAnnotation.Subject = "Sample Subject"
textAnnotation.State = AnnotationState.Accepted
textAnnotation.Contents = "Sample contents for the annotation"
textAnnotation.Open = True
textAnnotation.Icon = TextIcon.Key
Dim border As New Border(textAnnotation)
border.Width = 5
border.Dash = New Dash(1, 1)
textAnnotation.Border = border
textAnnotation.Rect = New Aspose.Pdf.Rectangle(200, 400, 400, 600)
'add annotation in the annotations collection of the page
pdfDocument.Pages(1).Annotations.Add(textAnnotation)
'//save output file
pdfDocument.Save("output.pdf")

标签:aspose.pdf

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn

文章转载自:慧都控件网

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP