用Python添加图形注释
Contents
[
Hide
]
添加方形和圆形注释
在 PDF 文档中,方形注释指的是一种特定类型的注释,它以方形形状表示。方形注释用于突出显示或引起文档中特定区域或部分的注意。
创建方形或圆形注释的步骤:
- 加载 PDF 文件 - 新建 Document。
- 创建新的 SquareAnnotation 并设置参数(新的矩形、标题、颜色、内部颜色、不透明度)。
- 然后我们需要将方形注释添加到页面中。
以下代码片段展示了如何在 PDF 页面中添加方形注释。
import aspose.pdf as ap
document = ap.Document(input_file)
squareAnnotation = ap.annotations.SquareAnnotation(document.pages[1], ap.Rectangle(60, 600, 250, 450, True))
squareAnnotation.title = "约翰·史密斯"
squareAnnotation.color = ap.Color.blue
squareAnnotation.interior_color = ap.Color.blue_violet
squareAnnotation.opacity = 0.25
document.pages[1].annotations.append(squareAnnotation)
document.save(output_file)
以下代码片段向您展示了如何在 PDF 页面中添加圆形注释。
import aspose.pdf as ap
# 打开文档
document = ap.Document(input_file)
circleAnnotation = ap.annotations.CircleAnnotation(
document.pages[1], ap.Rectangle(270, 160, 483, 383, True)
)
circleAnnotation.title = "约翰·史密斯"
circleAnnotation.color = ap.Color.red
circleAnnotation.interior_color = ap.Color.misty_rose
circleAnnotation.opacity = 0.5
circleAnnotation.popup = ap.annotations.PopupAnnotation(
document.pages[1], ap.Rectangle(842, 316, 1021, 459, True)
)
document.pages[1].annotations.append(circleAnnotation)
document.save(output_file)
例如,我们将看到在 PDF 文档中添加方形和圆形注释的以下结果:
获取圆形注释
请尝试使用以下代码片段从 PDF 文档中获取圆形注释。
import aspose.pdf as ap
document = ap.Document(input_file)
circleAnnotations = [
a
for a in document.pages[1].annotations
if (a.annotation_type == ap.annotations.AnnotationType.CIRCLE)
]
for ca in circleAnnotations:
print(ca.rect)
获取方形注释
请尝试使用以下代码片段从 PDF 文档中获取方形注释。
import aspose.pdf as ap
document = ap.Document(input_file)
squareAnnotations = [
a
for a in document.pages[1].annotations
if (a.annotation_type == ap.annotations.AnnotationType.SQUARE)
]
for pa in squareAnnotations:
print(pa.rect)
删除圆形注释
以下代码片段展示了如何从PDF文件中删除圆形注释。
import aspose.pdf as ap
document = ap.Document(input_file)
circleAnnotations = [
a
for a in document.pages[1].annotations
if (a.annotation_type == ap.annotations.AnnotationType.CIRCLE)
]
for ca in circleAnnotations:
document.pages[1].annotations.delete(ca)
document.save(output_file)
删除方形注释
以下代码片段展示了如何从PDF文件中删除方形注释。
import aspose.pdf as ap
document = ap.Document(input_file)
squareAnnotations = [
a
for a in document.pages[1].annotations
if (a.annotation_type == ap.annotations.AnnotationType.SQUARE)
]
for pa in squareAnnotations:
document.pages[1].annotations.delete(pa)
document.save(output_file)
添加多边形和折线注释
折线工具允许您在文档上创建具有任意边数的形状和轮廓。
Polygon Annotations 表示页面上的多边形。它们可以具有任意数量的由直线连接的顶点。
Polyline Annotations 也类似于多边形,唯一的区别是第一个和最后一个顶点没有隐式连接。
我们创建多边形注释的步骤:
- 加载 PDF 文件 - 新的 Document。
- 创建新的 Polygon Annotation 并设置多边形参数(新的矩形、新的点、标题、颜色、内部颜色和不透明度)。
- 之后我们可以将注释添加到页面。
以下代码片段显示了如何向 PDF 文件添加多边形注释:
import aspose.pdf as ap
document = ap.Document(input_file)
polygonAnnotation = ap.annotations.PolygonAnnotation(
document.pages[1],
ap.Rectangle(200, 300, 400, 400, True),
[
ap.Point(200, 300),
ap.Point(220, 300),
ap.Point(250, 330),
ap.Point(300, 304),
ap.Point(300, 400),
],
)
polygonAnnotation.title = "John Smith"
polygonAnnotation.color = ap.Color.blue
polygonAnnotation.interior_color = ap.Color.blue_violet
polygonAnnotation.opacity = 0.25
document.pages[1].annotations.append(polygonAnnotation)
document.save(output_file)
以下代码片段显示了如何向 PDF 文件添加折线注释:
- 加载 PDF 文件 - 新建 Document。
- 创建新的 Polyline Annotations 并设置多边形参数(新建矩形、新建点、标题、颜色、内颜色和不透明度)。
- 之后我们可以将注释添加到页面。
import aspose.pdf as ap
document = ap.Document(input_file)
polylineAnnotation = ap.annotations.PolylineAnnotation(
document.pages[1],
ap.Rectangle(270, 193, 571, 383, True),
[
ap.Point(545, 150),
ap.Point(545, 190),
ap.Point(667, 190),
ap.Point(667, 110),
ap.Point(626, 111),
],
)
polylineAnnotation.title = "John Smith"
polylineAnnotation.color = ap.Color.red
polylineAnnotation.popup = ap.annotations.PopupAnnotation(
document.pages[1], ap.Rectangle(842, 196, 1021, 338, True)
)
document.pages[1].annotations.append(polylineAnnotation)
document.save(output_file)
获取多边形和折线注释
请尝试使用以下代码片段在 PDF 文档中获取多边形注释。
import aspose.pdf as ap
document = ap.Document(input_file)
polygonAnnotations = [
a
for a in document.pages[1].annotations
if (a.annotation_type == ap.annotations.AnnotationType.POLYGON)
]
for pa in polygonAnnotations:
print(pa.rect)
请尝试使用以下代码片段在 PDF 文档中获取折线注释。
import aspose.pdf as ap
document = ap.Document(input_file)
polylineAnnotations = [
a
for a in document.pages[1].annotations
if (a.annotation_type == ap.annotations.AnnotationType.POLY_LINE)
]
for pa in polylineAnnotations:
print(pa.rect)
删除多边形和折线注释
以下代码片段展示了如何从 PDF 文件中删除多边形注释。
import aspose.pdf as ap
document = ap.Document(input_file)
polygonAnnotations = [
a
for a in document.pages[1].annotations
if (a.annotation_type == ap.annotations.AnnotationType.POLYGON)
]
for pa in polygonAnnotations:
document.pages[1].annotations.delete(pa)
document.save(output_file)
以下代码片段展示了如何从 PDF 文件中删除折线注释。
import aspose.pdf as ap
document = ap.Document(input_file)
polylineAnnotations = [
a
for a in document.pages[1].annotations
if (a.annotation_type == ap.annotations.AnnotationType.POLY_LINE)
]
for pa in polylineAnnotations:
document.pages[1].annotations.delete(pa)
document.save(output_file)