前面我们介绍了如何使用spire.pdf for java添加注释到pdf文档。该文将介绍如何删除pdf 文档中的现有注释。
pdf文档截图如下:
删除注释:
import com.spire.pdf.*;
public class deleteannotation {
public static void main(string[] args) throws exception {
//加载示例文档
pdfdocument document = new pdfdocument();
document.loadfromfile("annotations.pdf");
////删除第一页上的第一个注释
//document.getpages().get(0).getannotationswidget().removeat(0);
//删除所有注释
document.getpages().get(0).getannotationswidget().clear();
//保存文档
string result = "output/deleteallannotations_out.pdf";
document.savetofile(result);
}
}
效果图: