彩票走势图

Aspose.Pdf使用教程:为FreeTextAnnotation设置格式

原创|使用教程|编辑:郝浩|2013-03-21 13:41:14.000|阅读 1216 次

概述:注释都包含在一个特定的页面集合中,每个页面都有自己的注释集合。当添加FreeTextAnnotation在PDF文档中时,我们为之设定格式。

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

相关链接:

注释都包含在一个特定的页面集合中,每个页面都有自己的注释集合。当添加FreeTextAnnotation在PDF文档中时,我们为之设定格式。使用DefaultAppearance设置字体、大小、颜色等或使用TextStyle属性指定格式信息。此外,我们还可以更新已经存在于现有的PDF文档的FreeTextAnnotation的格式。

》》》下载Aspose.Pdf试用版

[TextStyle] 允许设置字体样式、颜色和大小。

FontName (设置字体样式)

FontSize (获取或者设置默认字体大小)

System.Drawing.Color Color (获取或者设置字体颜色)

TextAligment Alignment (获取或设置注释中的文字对齐方式)

下面是添加指定格式的FreeTextAnnotation代码片段

C#

//open document
Document pdfDocument = new Document("c:/pdftest/TestReport.pdf");
// instantiate DefaultAppearance object
Aspose.Pdf.InteractiveFeatures.DefaultAppearance default_appearance = new DefaultAppearance("Arial", 28, System.Drawing.Color.Red);
//create annotation
FreeTextAnnotation freetext = new FreeTextAnnotation(pdfDocument.Pages[1], new Aspose.Pdf.Rectangle(200, 400, 400, 600), default_appearance);
// specify the contents of annotation
freetext.Contents = "Free Text";
// add anootation to annotations collection of page
pdfDocument.Pages[1].Annotations.Add(freetext);
// save the updated document
pdfDocument.Save("c:/pdftest/Watermarked_output_FreeText.pdf");

 VB.NET
'open document Dim pdfDocument As Document = New Document("c:/pdftest/TestReport.pdf") ' instantiate DefaultAppearance object Dim default_appearance As Aspose.Pdf.InteractiveFeatures.DefaultAppearance = New InteractiveFeatures.DefaultAppearance("Arial", 28, System.Drawing.Color.Red) 'create annotation Dim freetext As FreeTextAnnotation = New FreeTextAnnotation(pdfDocument.Pages(1), New Aspose.Pdf.Rectangle(200, 400, 400, 600), default_appearance) ' specify the contents of annotation freetext.Contents = "Free Text" ' add anootation to annotations collection of page pdfDocument.Pages(1).Annotations.Add(freetext) ' save the updated document pdfDocument.Save("c:/pdftest/Watermarked_output_FreeText.pdf") 

下面是更新已有FreeTextAnnotation格式的代码片段

C#

Document doc1 = new Document("34471-2.pdf");
//set font size and color of the annotation:
(doc1.Pages[1].Annotations[1] as FreeTextAnnotation).TextStyle.FontSize = 18;
(doc1.Pages[1].Annotations[1] as FreeTextAnnotation).TextStyle.Color = System.Drawing.Color.Green;

VB.NET

Dim doc1 As Document = New Document("34471-2.pdf")
'set font size and color of the annotation:
CType(doc1.Pages(1).Annotations(1), FreeTextAnnotation).TextStyle.FontSize = 18
CType(doc1.Pages(1).Annotations(1), FreeTextAnnotation).TextStyle.Color = System.Drawing.Color.Green

标签:

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

文章转载自:慧都控件网

为你推荐

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


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP