java excel图片_关于JAVA POI实现向Excel中插入图片

在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)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值