本文将介绍如何使用Spire.Presentation for Java在Java程序中创建PPT文档,内容包括如何创建PPT文档,添加幻灯片并在幻灯片中添加矩形框、如何添加文字到矩形框中、如何设置文字的字体和样式等。
//创建PPT文档(默认包含一页空白幻灯片)
Presentation presentation = new Presentation();
//添加新矩形框到第一个幻灯片
Rectangle rec = new Rectangle((int) presentation.getSlideSize().getSize().getWidth() / 2 - 250, 80, 500, 150);
IAutoShape shape = presentation.getSlides().get(0).getShapes().appendShape(ShapeType.RECTANGLE, rec);
shape.getShapeStyle().getLineColor().setColor(Color.white);
shape.getFill().setFillType(FillFormatType.NONE);
//添加文字到矩形框
shape.appendTextFrame("你好 世界!");
//设置文字的字体和样式
PortionEx textRange = shape.getTextFrame().getTextRange();
textRange.getFill().setFillType(FillFormatType.SOLID);
textRange.getFill().getSolidColor().setColor(Color.blue);
textRange.setFontHeight(66);
textRange.setLatinFont(new TextFont("宋体"));
//保存文档
presentation.saveToFile(“helloWorld.pptx”, FileFormat.PPTX_2013);
生成的PPT截图: