Java を介して、PDFドキュメントに Circle の注釈を追加

ネイティブ 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 を介して Circle アノテーションを追加


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

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

システム要件


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

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

PDFから Circle の注釈を追加-Java

Example

    public static void AddCircleAnnotation() {
        try {
            // Load the PDF file
            Document document = new com.aspose.pdf.Document(_dataDir + "appartments.pdf");
            Page page = document.getPages().get_Item(1);

            // Create Polygon Annotation
            CircleAnnotation circleAnnotation = new CircleAnnotation(page, new Rectangle(270, 160, 483, 383));
            circleAnnotation.setTitle("John Smith");
            circleAnnotation.setColor(Color.getRed());
            circleAnnotation.setInteriorColor(Color.getMistyRose());
            circleAnnotation.setOpacity(0.5);
            circleAnnotation.setPopup(new PopupAnnotation(page, new Rectangle(842, 316, 1021, 459)));

            // Add annotation to the page
            page.getAnnotations().add(circleAnnotation);
            document.save(_dataDir + "appartments_mod.pdf");
        } catch (Exception ex) {
            System.out.println(ex.getMessage());
        }
    }