默认情况下powerpoint中的动画效果只会播放一次,但我们可以通过给动画效果设置重复次数或类型来让动画循环播放一定的次数或者是无限循环直到幻灯片的末尾。本文将介绍如何使用spire.presentation for java在java应用程序中实现这一功能。
import com.spire.presentation.*;
import com.spire.presentation.drawing.animation.animationeffect;
public class repeatanimation {
public static void main(string[] args) throws exception {
//创建presentation实例
presentation ppt = new presentation();
//加载powerpoint文档
ppt.loadfromfile("animation.pptx");
//获取第一张幻灯片
islide slide = ppt.getslides().get(0);
//获取幻灯片中第一个动画效果
animationeffect animation = slide.gettimeline().getmainsequence().get(0);
//设置动画效果循环播放直到幻灯片的末尾
animation.gettiming().setanimationrepeattype(animationrepeattype.utilendofslide);
//保存结果文档
ppt.savetofile("repeatanimation.pptx", fileformat.pptx_2013);
}
}