595596597598599600601602603604605
public PictureData[] getPictures() { if(_pictures == null) { try { readPictures(); } catch(IOException e) { throw new CorruptPowerPointFileException(e.getMessage()); } } return _pictures.toArray(new PictureData[_pictures.size()]); }