Skip to content

获取注释

获取注释列表和注释对象的步骤如下:

  1. 获取页面对象。
  2. 取得页面对象中的注释列表。
  3. 遍历列表中的每一个注释对象。

以下是对应的代码:

Java
CPDFDocument document = new CPDFDocument();
document.open("fileUrl");
int pageCount = document.getPageCount();
if (pageCount > 0){
  for (int pageIndex = 0; pageIndex < pageCount; pageIndex++) {
    List<CPDFAnnotation> annotations = document.pageAtIndex(pageIndex).getAnnotations();
    if (annotations != null && !annotations.isEmpty() ){
      for (CPDFAnnotation annotation:annotations){
        if (annotation == null || !annotation.isValid()){
           continue;
        }
        // 开始对获取到的注释进行相关的操作。
      }
    }
  }
}