我正在使用POI API将许多Excel工作簿复制到1个大型Excel工作簿中。 对于我的要求之一,有一些图像在文档中专门放置和调整大小。 我正在使用以下代码的组合来传输所有必要的图像。 它们仅是图片,并且已找到所有图片。
import org.openxmlformats.schemas.drawingml.x2006.main.CTPositiveSize2D; // only important class you need to know about.
private static void transferShape (XSSFSheet sheet, XSSFSheet newSheet) {
XSSFDrawing drawing = sheet.createDrawingPatriarch();
for(XSSFShape shape : drawing.getShapes()) {
if(shape instanceof XSSFPicture) {
XSSFPicture picture = (XSSFPicture) shape;
transferPicture(picture, newSheet);
}
}
}
private static void transferPicture(XSSFPicture picture, XSSFSheet newSheet) {
XSSFPictureData xssfPictureData = picture.getPictureData();
XSSFClientAnchor anchor = picture.getPreferredSize();
int col1 = anchor.getCol1();
int col2 = a