Java/画像の座標を取得する
5557 ワード
PDFファイルは、最も人気のある互換性のあるファイル形式は、1900年代のアドビによって作成されたPDFは、テキスト、画像、ハイパーリンク、テーブルなどを含めることができます時には、XとYを取得する必要がありますPDFページ内の画像の正確な場所を取得する座標.この記事では、Free Spire.PDF for Javaを使用してJavaでこのタスクを実行する方法を学びます.
方法1 : free libraryをダウンロードして解凍します.その後、尖塔を追加します.PDFファイル.Javaファイルに依存するjarファイル.
方法2 : POMに次の設定を追加することによって、MavenプロジェクトにJAR依存を直接追加します.XMLファイル.
無料のライブラリをインストールする
方法1 : free libraryをダウンロードして解凍します.その後、尖塔を追加します.PDFファイル.Javaファイルに依存するjarファイル.
方法2 : POMに次の設定を追加することによって、MavenプロジェクトにJAR依存を直接追加します.XMLファイル.
<repositories>
<repository>
<id>com.e-iceblue</id>
<name>e-iceblue</name>
<url>https://repo.e-iceblue.com/nexus/content/groups/public/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>e-iceblue</groupId>
<artifactId>spire.pdf.free</artifactId>
<version>5.1.0</version>
</dependency>
</dependencies>
サンプルコード
import com.spire.pdf.PdfDocument;
import com.spire.pdf.PdfPageBase;
import com.spire.pdf.exporting.PdfImageInfo;
import java.awt.geom.Rectangle2D;
public class GetCoordinateOfImage {
public static void main(String[] args) {
//Create a PdfDocument object
PdfDocument doc = new PdfDocument();
//Load a PDF file
doc.loadFromFile("file1.pdf");
//Get the first worksheet
PdfPageBase page = doc.getPages().get(0);
//Get the image information of the page
PdfImageInfo[] imageInfo = page.getImagesInfo();
//Loop through the image information
for (int i = 0; i < imageInfo.length; i++) {
//Get the bounds property of a specific image
Rectangle2D rect = imageInfo[i].getBounds();
//Get the x and y coordinates
System.out.println(String.format("The coordinate of image %d:(%f, %f)", i+1, rect.getX(), rect.getY()));
}
}
}
Reference
この問題について(Java/画像の座標を取得する), 我々は、より多くの情報をここで見つけました https://dev.to/carlwils/java-get-coordinates-of-images-in-pdf-goテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol