添加文本字段注释

如何在 C# 中添加文本字段注释

Text field 注释添加了一个带有文本的矩形,如下图所示。

可以为 TextFieldAnnotation 类型指定下一个属性:

按照以下步骤将 TextField 注释添加到文档:

  • 使用输入文档路径或流实例化 Annotator 对象;
  • 使用所需属性(位置、页码等)实例化 TextFieldAnnotation 对象;
  • 调用 Add 方法并传递 TextFieldAnnotation /groupdocs.annotation.models.annotationmodels/textfieldannotation) 对象;
  • 使用结果文档路径或流调用 Save 方法。

以下代码演示了如何在文档中添加 TextFieldAnnotation

//Add text field annotation to the document from local disk
using (Annotator annotator = new Annotator("input.pdf"))
{
TextFieldAnnotation textField = new TextFieldAnnotation
{
BackgroundColor = 65535,
Box = new Rectangle(100, 100, 100, 100),
CreatedOn = DateTime.Now,
Text = "Some text",
FontColor = 65535,
FontSize = 12,
Message = "This is text field annotation",
Opacity = 0.7,
PageNumber = 0,
PenStyle = PenStyle.Dot,
PenWidth = 3,
FontFamily = "Arial",
TextHorizontalAlignment = HorizontalAlignment.Center,
Replies = new List<Reply>
{
new Reply
{
Comment = "First comment",
RepliedOn = DateTime.Now
},
new Reply
{
Comment = "Second comment",
RepliedOn = DateTime.Now
}
}
};
annotator.Add(textField);
annotator.Save("result.pdf");

更多资源

GitHub 示例

您可以轻松运行上面的代码,并在我们的 GitHub 示例中查看该功能的实际效果: