In powerpoint there is a nice feature that allows you to choose "group" from the context menu when selecting more than one object. See a example here.
Currently I have created a slide and a image like this:
XSLFSlide slide = ppt.createSlide();
byte[] pictureData = IOUtils.toByteArray(inputstream);
XSLFPictureData pd = ppt.addPicture(pictureData, PictureData.PictureType.PNG);
XSLFPictureShape picture = slide.createPicture(pd);
Is there a way to incorporate that feature via the apache poi into my current code?