当我使用POI XSLF创建PPTX时,我得到一张空白幻灯片:
TypeError: list indices must be integers, not list
为什么幻灯片空白而没有任何文字?
答案 0 :(得分:6)
您的文本框没有锚点(位置和大小)。
您可以查看POI的示例如何添加文本框: XSLF Examples - Tutorial 6
XSLFTextBox shape = slide.createTextBox();
shape.setAnchor(new Rectangle(x, y, width, height));