Java를 사용하여 PowerPoint에서 슬라이드 크기 설정

8905 단어
PowerPoint 문서를 만들 때 기본 슬라이드 크기 외에도 슬라이드 크기를 Widescreen 16x9, Overhead, A3, A4, Banner, B4 및 B5와 같은 미리 정의된 크기로 설정하거나 변경할 수도 있습니다. 일부 특정 요구 사항을 충족하기 위해 PowerPoint에서는 슬라이드 크기를 사용자 지정할 수도 있습니다. 이 기사에서는 무료 Java 라이브러리를 사용하여 프로그래밍 방식으로 슬라이드 크기를 설정하는 방법을 배웁니다.

JAR 종속성 가져오기(2가지 방법)



free library (Free Spire.Presentation for Java)을 다운로드하고 압축을 푼 다음 Spire.Presentation.jar 파일을 종속 항목으로 프로젝트에 추가합니다.
● 다음 구성을 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>5.1.0</version>
    </dependency>
</dependencies>


슬라이드 크기를 사전 정의된 크기로 설정



Free Spire.Presentation for Java에서 제공하는 SlideSize.setType() 메서드를 사용하면 슬라이드 크기를 사전 정의된 크기로 쉽게 설정할 수 있습니다.

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

import java.awt.geom.Rectangle2D;

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

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

        //Set the slide size to Screen 16x9
        presentation.getSlideSize().setType(SlideSizeType.OVERHEAD);

        //Add a shape to the first slide
        IAutoShape shape = presentation.getSlides().get(0).getShapes().appendShape(ShapeType.RECTANGLE, new Rectangle2D.Float(220, 150, 300, 100));
        shape.getTextFrame().setText("This example shows you how to set slide size to Widescreen 16X9.");

        //Save to file
        presentation.saveToFile("output/PredefinedSize.pptx", FileFormat.PPTX_2013);
    }
}




슬라이드 크기 맞춤설정



슬라이드 크기를 사용자 지정하려면 크기 유형을 사용자 지정으로 설정한 다음 SlideSize.setSize() 메서드를 사용하여 사용자 지정된 너비와 높이를 슬라이드에 적용합니다.

import com.spire.presentation.*;

import java.awt.*;
import java.awt.geom.Rectangle2D;

public class CustomizeSlideSize {

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

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

        //Set the slide size type to custom
        presentation.getSlideSize().setType(SlideSizeType.CUSTOM);

        //Set the slide size to a custom size 
        presentation.getSlideSize().setSize(new Dimension(800,400));

        //Add a shape to the first slide
        IAutoShape shape = presentation.getSlides().get(0).getShapes().appendShape(ShapeType.RECTANGLE, new Rectangle2D.Float(20, 50, 500, 50));
        shape.getTextFrame().setText("This example shows you how to customize the slide size.");

        //Save to file
        presentation.saveToFile("output/CustomSize.pptx", FileFormat.PPTX_2013);
    }
}

좋은 웹페이지 즐겨찾기