Java를 사용하여 PowerPoint에서 슬라이드 크기 설정
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);
}
}
Reference
이 문제에 관하여(Java를 사용하여 PowerPoint에서 슬라이드 크기 설정), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/carlwils/set-the-slide-size-in-powerpoint-using-java-1l3i텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)