Skip to content

Instantly share code, notes, and snippets.

@szymonk92
szymonk92 / ExportToPowerPoint
Last active May 11, 2021 08:22
insert image to PPTX
final XSLFSlide graphSlide = slideShow.createSlide(layoutMap.get(graphLayout).get(0));
PictureData.PictureType graphpictype = PictureData.PictureType.PNG;
XSLFPictureData graphidx = null;
try {
final byte[] graphPictureData;
try (InputStream is = new FileInputStream(graphpict)) {
graphPictureData = IOUtils.toByteArray(is);
}
graphidx = slideShow.addPicture(graphPictureData, graphpictype);
} catch (Exception e) {