添加箭头注释
Contents
[
Hide
]
如何在 C# 中添加箭头注释
箭头注释在文档上绘制一个箭头,如下图所示。
可以为 ArrowAnnotation 类型指定下一个属性:
- Box - 定义文档页面的注释位置;
- 不透明度 - 允许设置注释不透明度;
- PenColor - 定义箭头颜色;
- PenStyle - 定义注释线样式(实线、虚线、点等);
- PenWidth - 以像素为单位定义箭头线宽。
以下步骤显示了如何将箭头注释添加到文档:
- 使用输入文档路径或流实例化 Annotator 对象;
- 使用所需属性(位置、页码等)实例化 ArrowAnnotation 对象;
- 调用Add方法并通过ArrowAnnotation /groupdocs.annotation.models.annotationmodels/arrowannotation) 对象;
- 使用结果文档路径或流调用 Save 方法。
以下代码演示了如何在文档中添加 ArrowAnnotation:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using (Annotator annotator = new Annotator("input.pdf")) | |
{ | |
ArrowAnnotation arrow = new ArrowAnnotation | |
{ | |
Box = new Rectangle(100, 100, 100, 100), | |
CreatedOn = DateTime.Now, | |
Message = "This is arrow annotation", | |
Opacity = 0.7, | |
PageNumber = 0, | |
PenColor = 65535, | |
PenStyle = PenStyle.Dot, | |
PenWidth = 3, | |
Replies = new List<Reply> | |
{ | |
new Reply | |
{ | |
Comment = "First comment", | |
RepliedOn = DateTime.Now | |
}, | |
new Reply | |
{ | |
Comment = "Second comment", | |
RepliedOn = DateTime.Now | |
} | |
} | |
}; | |
annotator.Add(arrow); | |
annotator.Save("result.pdf"); | |
} |
更多资源
GitHub 示例
您可以轻松运行上面的代码,并在我们的 GitHub 示例中查看该功能的实际效果: