在EXCEL中插入图片,常用的一个方法就是使用POI实现。
代码如下:
HSSFPatriarch patriarch = (HSSFPatriarch) sheet.createDrawingPatriarch();
HSSFClientAnchor anchor = new HSSFClientAnchor(0, 150, 1000, 210, (short) 0, 0, (short) 1, 1);
patriarch.createPicture(anchor, workbook.addPicture(byteArrayOut.toByteArray(), HSSFWorkbook.PICTURE_TYPE_PNG));
对于其中的HSSFClientAnchor,做一个详细的解释,作为自己的记录:
网上常规的解释如下:
HSSFClientAnchor(int dx1,int dy1,int dx2,int dy2,short col1,int row1,short col2, int row2);各个参数的含义如下:
dx1:the x coordinate within the first cell。
dy1:the y coordinate within the first cell。
dx2:the x coordinate within the second cell。
dy2:the y coordinate within the second cell。
col1:the column (0 based) of the first cell。
row1:the row (0 based) of the first cell。
col2:the column (0 based) of the second cell。
row2:the row (0 based) of the second cell。
这里dx1、dy1定义了该图片在开始cell的起始位置,dx2、dy2定义了在终cell的结束位置。col1、row1定义了开始cell、col2、row2定义了结束cell。
----------------------------------华丽的分割线----------------------------------
新注解如下:
对于后面部分col1、row1、col2、row2特别简单,不加赘述。对于第一部分dx1、dy1、dx2、dy2的定义,说破了就很简单:
将一个单元格宽分割成1024份[0-1023],高分割成256份[0-255]。
因此,dx1,dy1就是在单元格【col1,row1】针对左上角(0,0)宽的偏移量、高的偏移量;dx2,dy2就是在单元格【col2,row2】针对左上角(0,0)宽的偏移量、高的偏移量.
上图中大概的位置
HSSFClientAnchor(50,100,800,230,1,1,3, 8)