Getting image data from XSSFPicture is pretty straightforward.
byte[] pictureData = ((XSSFPicture)picture).getPictureData().getData();
However, if we access low level pictures inside XSSFShapeGroup particularly CTPicture
, how can we retrieve the data from CTPicture
instances?