Java を介して、PDFドキュメント内の Freetext 注釈を取得

ネイティブ API を使用して、PDF ファイル内のコメントや作成者を操作する独自の Java アプリを構築します。

PDF ファイルに注釈を付けるには、Aspose.PDF for Java API を使用します。これは、Java プラットフォーム向けの機能豊富で強力で使いやすい変換 API です。最新バージョンを Maven から直接ダウンロードし、pom.xml に次の構成を追加することで、Maven ベースのプロジェクトにインストールできます。

Repository

<repository>
    <id>AsposeJavaAPI</id>
    <name>Aspose Java AP</name>
    <url>https://releases.aspose.com/java/repo/</url>
</repository>

Dependency

<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-pdf</artifactId>
<version>version of aspose-pdf API</version>
</dependency>

Java を介して Freetext アノテーションを取得


ご使用の環境でコードを試すには Aspose.PDF for Java が必要です。

  • Document クラスのインスタンスにPDFをロードする
  • 新しいページを作成するか、既存のページへの参照を取得します
  • Freetext アノテーションを作成する
  • Page.Annotations コレクションから Freetext アノテーションのメソッド Get を呼び出します
  • ファイルをもう一度保存する

システム要件


Aspose.PDF for Java は、すべての主要なオペレーティングシステムでサポートされています。次の前提条件を満たしていることを確認してください。

  • Microsoft Windows、または JSP/JSF アプリケーションおよびデスクトップアプリケーション用の Java ランタイム環境と互換性のある OS。
  • Eclipse や IntelliJ IDEA のような開発環境
  • プロジェクトで参照されている Java ライブラリの Aspose.PDF。

PDFから Freetext の注釈を取得-Java

Example

    public static void GetFreeTextAnnotation() {
        // Load the PDF file
        Document document = new Document(_dataDir + "sample_freetext.pdf");

        // Filter annotations using AnnotationSelector
        Page page = document.getPages().get_Item(1);
        AnnotationSelector annotationSelector = new AnnotationSelector(
                new FreeTextAnnotation(page, Rectangle.getTrivial(), new DefaultAppearance()));
        page.accept(annotationSelector);
        List<Annotation> freeTextAnnotations = annotationSelector.getSelected();

        // print results
        for (Annotation fa : freeTextAnnotations) {
            System.out.println(fa.getRect());
        }
    }