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