Java의 Powerpoint 슬라이드에 전환 추가

PowerPoint의 슬라이드 전환은 프레젠테이션 중에 한 슬라이드에서 다음 슬라이드로 이동할 때 발생하는 시각적 효과입니다. 슬라이드 사이에 전환을 추가하면 청중이 계속 참여하면서 다른 슬라이드를 구별하는 데 도움이 될 수 있습니다. 이 기사에서는 Java용 Free Spire.Presentation을 사용하여 프로그래밍 방식으로 다른 프레젠테이션 슬라이드에 전환을 추가하는 방법을 공유합니다.

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



free library을 다운로드하고 압축을 푼 다음 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>


샘플 코드



Java용 Free Spire.Presentation에서 제공하는 Islide.getSlideShowTransition().setType() 메서드, Islide.getSlideShowTransition().setSoundMode() 메서드 및 Islide.getSlideShowTransition().setSpeed() 메서드를 사용하면 전환 유형, 사운드 모드를 설정할 수 있습니다. 지정된 슬라이드의 속도.
전체 샘플 코드는 다음과 같습니다.

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

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

        //Load a PowertPoint document
        Presentation presentation = new Presentation();
        presentation.loadFromFile("Symbolism.pptx");

        //Set the first slide transition as push and sound mode
        presentation.getSlides().get(0).getSlideShowTransition().setType(TransitionType.PUSH);
        presentation.getSlides().get(0).getSlideShowTransition().setSoundMode(TransitionSoundMode.START_SOUND);

        //Set the second slide transition as split and set the speed
        presentation.getSlides().get(1).getSlideShowTransition().setType(TransitionType.SPLIT);
        presentation.getSlides().get(1).getSlideShowTransition().setSpeed(TransitionSpeed.SLOW);

        //Save the file
        presentation.saveToFile("setTransitions.pptx", FileFormat.PPTX_2010);
        presentation.dispose();
    }
}


좋은 웹페이지 즐겨찾기