我们可以将多个PPT形状进行合并,以便对它们进行整体操作。本文将介绍如何使用Spire.Presentation for Java在PPT中合并形状。
import com.spire.presentation.*;
import com.spire.presentation.drawing.FillFormatType;
import java.awt.geom.Rectangle2D;
import java.util.ArrayList;
public class GroupShapes {
public static void main(String[] args) throws Exception {
//创建PPT文档
Presentation ppt = new Presentation();
//获取第一张幻灯片
ISlide slide = ppt.getSlides().get(0);
//添加一个矩形形状
IShape rectangle = slide.getShapes().appendShape(ShapeType.RECTANGLE, new Rectangle2D.Double(20,100,200,40));
rectangle.getFill().setFillType(FillFormatType.SOLID);
rectangle.getFill().getSolidColor().setKnownColor(KnownColors.GOLD);
rectangle.getLine().setWidth(0.1f);
//添加一个带状形状
IShape ribbon = slide.getShapes().appendShape(ShapeType.RIBBON_2, new Rectangle2D.Double(60, 75, 120, 80));
ribbon.getFill().setFillType(FillFormatType.SOLID);
ribbon.getFill().getSolidColor().setKnownColor(KnownColors.PURPLE);
ribbon.getLine().setWidth(0.1f);
//将两个形状添加到ArrayList数组
ArrayList list = new ArrayList();
list.add((Shape)rectangle);
list.add((Shape)ribbon);
//组合数组中的形状
ppt.getSlides().get(0).groupShapes(list);
//保存结果文档
ppt.saveToFile("GroupShapes.pptx", FileFormat.PPTX_2013);
}
}