Java에서 PDF에 이미지 삽입
Jar 종속성 가져오기(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>
샘플 코드
Java용 무료 Spire.PDF는 생성 시 PDF에 이미지를 추가하고 기존 PDF에 이미지를 삽입하는 PdfPageBase.getCanvas().drawImage() 메서드를 제공합니다. 다음 코드는 기존 PDF 문서에 이미지를 삽입하는 방법과 텍스트 내용을 가리지 않도록 삽입된 이미지의 투명도를 설정하는 방법을 보여줍니다.
import com.spire.pdf.*;
import com.spire.pdf.graphics.PdfImage;
public class InsertImage {
public static void main(String[] args) {
//Create PDF document
PdfDocument pdf = new PdfDocument();
//Load the PDF document from disk
pdf.loadFromFile("D:\\Files\\input.pdf");
//Get a specified page
PdfPageBase page = pdf.getPages().get(0);
//Load an image
PdfImage image = PdfImage.fromFile("C:\\Users\\Administrator\\Desktop\\Olympics.jpg");
//Set the width and height of image
float width = image.getWidth() * 0.75f;
float height = image.getHeight() * 0.75f;
//Define a position to draw image
double x = (page.getCanvas().getClientSize().getWidth()-width) /2;
float y = 300f;
//Set image transparency
page.getCanvas().setTransparency(0.5f);
//Draw image on page canvas
page.getCanvas().drawImage(image, x, y, width, height);
//Save the document
pdf.saveToFile("insertImage.pdf", FileFormat.PDF);
pdf.close();
}
}
Reference
이 문제에 관하여(Java에서 PDF에 이미지 삽입), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/carlwils/insert-image-in-pdf-in-java-1pdb텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)