poi を使用して ppt ファイルを読み込もうとしています。ppt に挿入された autoshapes を読み込んで、スライドに従って別のファイルに保存する方法を知りたいです。
以下のコードを使用しています。
public void getAutoShapes()
{
for (int i = 0; i < _slides.length; i++)
{
Slide slide = _slides[i];
Shape[] autoshape = slide.getShapes();
for (int j = 0; j < autoshape.length; j++)
{
if(autoshape[j].getShapeName()=="NotPrimitive")
{
autoshape[j].typeName(autoshape[j].getShapeId());
}
}
}
}