彩票走势图

PDF处理控件Aspose.PDF功能演示:使用Java在PDF文件中添加或删除注释

翻译|使用教程|编辑:李显亮|2021-03-29 10:10:37.843|阅读 350 次

概述:由于PDF文件不可编辑,因此批注可让您提供其他信息。在本文中,您将学习如何以编程方式使用PDF文件中的注释。特别是,您将学习如何使用Java在PDF文件中添加或删除注释。

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

相关链接:

PDF文件中的注释用于详细说明内容。批注可以是注释,弹出窗口或图形对象,例如箭头,线条等。由于PDF文件不可编辑,因此批注可让您提供其他信息。在本文中,您将学习如何以编程方式使用PDF文件中的注释。特别是,您将学习如何使用Java在PDF文件中添加或删除注释。

  • 使用Java将注释添加到PDF
  • 使用Java从PDF中删除注释
    • 删除特殊注释
    • 删除所有注释

Aspose.PDF for Java是功能丰富的API,可让您使用Java生成,编辑和转换PDF文件。此外,该API允许您无缝处理各种PDF注释。感兴趣的朋友可点击下方按钮下载最新版。

点击下载最新版Aspose.PDF for Java

PDF处理控件Aspose.PDF功能演示:使用Java在PDF文件中添加或删除注释
整合所有格式的Aspose.Total永久授权正在火热促销中,立马1分钟了解全部咨询!

使用Java将注释添加到PDF

Java的Aspose.PDF支持许多注释,包括但不限于文本,线条,圆形,正方形,突出显示等。要使用每种注释类型,Java的Aspose.PDF提供了一个单独的类。例如,LineAnnotation 类用于添加行,而 HighlightAnnotation 类用于添加突出显示注释。

为了演示,我们将文本注释添加到PDF文件中。以下是与API引用一起使用Java向PDF添加文本注释的步骤。

  • 首先,使用Document类加载PDF文档。
  • 创建TextAnnotation类的对象以添加文本注释。
  • 设置注释的属性,例如标题,主题等。
  • 使用Border类设置注释的 Border。
  • 使用Document.getPages().get_Item(int).getAnnotations().add(Annotation) 方法将注释添加到文档中。
  • 最后,使用Document.save(string)方法保存更新的PDF 。

以下代码示例显示了如何使用Java将文本注释添加到PDF。

// Open the source PDF document
Document pdfDocument = new Document("input.pdf");

// Create annotation
TextAnnotation textAnnotation = new TextAnnotation(pdfDocument.getPages().get_Item(1), new com.aspose.pdf.Rectangle(200, 400, 400, 600));

// Set annotation title
textAnnotation.setTitle("Sample Annotation Title");

// Set annotation subject
textAnnotation.setSubject("Sample Subject");
textAnnotation.setState(AnnotationState.Accepted);

// Specify the annotation contents
textAnnotation.setContents("Sample contents for the annotation");
textAnnotation.setOpen(true);
textAnnotation.setIcon(TextIcon.Key);
Border border = new Border(textAnnotation);
border.setWidth(5);
border.setDash(new Dash(1, 1));
textAnnotation.setBorder(border);
textAnnotation.setRect(new com.aspose.pdf.Rectangle(200, 400, 400, 600));

// Add annotation in the annotations collection of the page
pdfDocument.getPages().get_Item(1).getAnnotations().add(textAnnotation);

// Save the output file
pdfDocument.save("output.pdf");

使用Java从PDF中删除注释

Java的Aspose.PDF支持许多注释,包括但不限于文本,线条,圆形,正方形,突出显示等。要使用每种注释类型,Java的Aspose.PDF提供了一个单独的类。例如,LineAnnotation 类用于添加行,而 HighlightAnnotation 类用于添加突出显示注释。

为了从PDF页面中删除注释,Aspose.PDF for Java提供了以下选项:

  • 删除页面上的特定注释
  • 删除页面上的所有注释

删除特定的PDF批注

以下是使用Java从PDF文件中删除注释的步骤。

  • 首先,使用Document类加载PDF文档。
  • 使用Document.getPages().get_Item(int).getAnnotations().delete(int)方法通过索引删除所需的注释。
  • 最后,使用Document.save(string)方法保存更新的PDF 。

以下代码示例显示了如何使用Java从PDF页面中删除特定注释。

// Open the source PDF document
Document pdfDocument = new Document("input.pdf");

// Delete particular annotation
pdfDocument.getPages().get_Item(1).getAnnotations().delete(1);

// Save the update document
pdfDocument.save("output.pdf");

删除所有PDF注释

以下是使用Java删除PDF页面上所有注释的步骤。

  • 首先,使用Document类加载PDF文档。
  • 使用Document.getPages().get_Item(int).getAnnotations().delete()方法删除所有注释。
  • 最后,使用Document.save(string)方法保存更新的PDF 。

以下代码示例显示了如何使用Java删除PDF页面上的所有注释。

// Open source PDF document
Document pdfDocument = new Document("input.pdf");

// Delete all annotation
pdfDocument.getPages().get_Item(1).getAnnotations().delete();

// Save the update document
pdfDocument.save("output.pdf");

如果你想试用Aspose的全部完整功能,可联系在线客服获取30天临时授权体验。


还想要更多吗?您可以点击阅读【2020 · Aspose最新资源整合】查找需要的教程资源。如果您有任何疑问或需求,请随时加入Aspose技术交流群(761297826),我们很高兴为您提供查询和咨询

标签:

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


为你推荐

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


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP