Java如何在PDF新增註釋

airland發表於2021-09-11

Java如何在PDF新增註釋

流程

1、使用Document類載入PDF文件。

2、建立TextAnnotation物件,新增文字註釋。

3、設定標題、主題等註釋屬性。

4、使用Border類設定註釋的Border。

使用Document.getPages().get_Item(int).getAnnotations().add(Annotation)方法向文件新增註釋。

5、用Document.save儲存更新的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學習指路:

本教程操作環境:windows7系統、java10版,DELL G3電腦。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/964/viewspace-2829947/,如需轉載,請註明出處,否則將追究法律責任。

相關文章