如何在使用POI XSLF时创建PPTX?

时间:2015-06-19 08:33:08

标签: java apache-poi xslf

当我使用POI XSLF创建PPTX时,我得到一张空白幻灯片:

TypeError: list indices must be integers, not list

为什么幻灯片空白而没有任何文字?

1 个答案:

答案 0 :(得分:6)

您的文本框没有锚点(位置和大小)。

您可以查看POI的示例如何添加文本框: XSLF Examples - Tutorial 6

XSLFTextBox shape = slide.createTextBox();
shape.setAnchor(new Rectangle(x, y, width, height));