Java에서 PDF에 이미지 삽입

6438 단어 javapdffreeimage
이미지는 PDF 문서의 중요한 부분이며 PDF 페이지의 적절한 위치에 이미지를 삽입하면 문서를 더욱 매력적으로 만들 수 있습니다. 이 기사에서는 Free Spire.PDF for 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();
    }
}


좋은 웹페이지 즐겨찾기