Java--PowerPoint에서 이미지 바꾸기

6926 단어 powerpointjava
일상 업무를 하다 보면 파워포인트 문서의 이미지를 바꿔야 하는 상황에 직면할 때가 있습니다. Free Spire.Presentation for Java는 Java 애플리케이션에서 기존 이미지를 새 이미지로 교체하는 방법을 제공합니다. 이 기사에서는 사용된 Java 코드를 공유합니다.

Jar 종속성 가져오기

방법 1: Free Spire.Presentation for Java을 다운로드하고 압축을 풉니다. 그런 다음 Spire.Presentation.jar 파일을 종속성으로 프로젝트에 추가합니다.

방법 2: pom.xml에 다음 구성을 추가하여 maven 프로젝트에 jar 종속성을 추가할 수도 있습니다.

<repositories>
        <repository>
            <id>com.e-iceblue</id>
            <name>e-iceblue</name>
            <url>http://repo.e-iceblue.com/nexus/content/groups/public/</url>
        </repository>
</repositories>
<dependencies>
    <dependency>
        <groupId>e-iceblue</groupId>
        <artifactId>spire.presentation.free</artifactId>
        <version>3.9.0</version>
    </dependency>
</dependencies>


이미지 바꾸기

import com.spire.presentation.*;
import com.spire.presentation.drawing.IImageData;

import javax.imageio.ImageIO;
import java.awt.image.BufferedImage;
import java.io.FileInputStream;

public class ReplaceImage {

    public static void main(String[] args) throws Exception {

        //create a Presentation object
        Presentation presentation= new Presentation();

        //load the sample PowerPoint file
        presentation.loadFromFile("Polar bears.pptx");

        //add an image to the image collection
        String imagePath = "C:\\Users\\Administrator\\Desktop\\p1.jpg";
        BufferedImage bufferedImage = ImageIO.read(new FileInputStream(imagePath));
        IImageData image = presentation.getImages().append(bufferedImage);

        //get the shape collection from the first slide
        ShapeCollection shapes = presentation.getSlides().get(0).getShapes();

        //loop through the shape collection
        for (int i = 0; i < shapes.getCount(); i++) {

            //determine if a shape is a picture
            if (shapes.get(i) instanceof SlidePicture) {

                //fill the shape with a new image
                ((SlidePicture) shapes.get(i)).getPictureFill().getPicture().setEmbedImage(image);
            }
        }

        //save to file
        presentation.saveToFile("ReplaceImage.pptx", FileFormat.PPTX_2013);
    }
}


전에


후에

좋은 웹페이지 즐겨찾기