本文介绍如何使用spire.presentation for java来编辑ppt幻灯片中已有的smartart图形,包括重置图形样式、颜色、添加/删除图形节点、编辑节点内容、添加超链接到节点(链接到网页、链接到指定幻灯片)等。
import com.spire.presentation.*;
import com.spire.presentation.diagrams.*;
public class modifysmartart {
public static void main(string[] args) throws exception {
//加载ppt文档
presentation ppt = new presentation();
ppt.loadfromfile("sample.pptx");
//获取smartart图形
ismartart smartart = (ismartart) ppt.getslides().get(0).getshapes().get(0);
//重置图形样式及颜色
smartart.setstyle(smartartstyletype.subtle_effect);
smartart.setcolorstyle(smartartcolortype.colorful_accent_colors_2_to_3);
//获取smartart图形的节点集合
ismartartnodecollection nodes = smartart.getnodes();
nodes.get(1).gettextframe().settext("新修改的节点内容");//更改节点内容
nodes.get(1).gettextframe().setautofittype(textautofittype.shape);//设置节点形状的文本自适应类型
//添加超链接到节点
nodes.get(2).setclick(new clickhyperlink("https://www.baidu.com/"));//添加指向网页的超链接
nodes.get(3).setclick(new clickhyperlink(ppt.getslides().get(1)));//添加指向指定幻灯片的超链接
//添加节点
ismartartnode newnode = nodes.get(5).getchildnodes().addnode();
newnode.gettextframe().settext("新添加的节点内容");
//nodes[0].childnodes[3].childnodes.removenodebyposition(0);//删除节点
//保存文档
ppt.savetofile("output.pptx", fileformat.pptx_2013);
ppt.dispose();
}
}
测试文档:
编辑结果如下,添加的超链接效果需要在幻灯片播放中查看: