Java/PDF에서 이미지 좌표 얻기
5643 단어 programmingjavaapipdf
무료 라이브러리 설치(2가지 방법)
방법 1: free library을 다운로드하고 압축을 풉니다. 그런 다음 Spire.Pdf.jar 파일을 Java 애플리케이션에 종속성으로 추가합니다.
방법 2: 다음 구성을 pom.xml 파일에 추가하여 maven 프로젝트에 jar 종속성을 직접 추가합니다.
<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/PDF에서 이미지 좌표 얻기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/carlwils/java-get-coordinates-of-images-in-pdf-go텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)