- public HSSFClientAnchor(int dx1,int dy1,int dx2,int dy2,short col1,int row1,short col2,
- int row2);Creates a new client anchor and sets the top-left and bottom-right coordinates of the anchor.
- Parameters:
- 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.
dx2:第二个单元格的开始X坐标
dy2:第二个单元格的开始y坐标
- 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.
- col1 图片的左上角放在第几个列cell,
row1 图片的左上角放在第几个行cell,
col2 图片的右下角放在第几个列cell,
row2 图片的右下角放在第几个行cell, - 列宽
sheet.setColumnWidth((short)column,(short)width);
行高
row.setHeight((short)height); - 添加多个图片时:多个pic应该share同一个DrawingPatriarch在同一个sheet里面。
相关推荐
以下是关键知识点的详细说明: 1. **Apache POI库**:Apache POI是一个开源项目,它提供了Java API来处理Microsoft Office格式的文件,如XLS(Excel 97-2003)和XLSX(Excel 2007及以上)。在这个例子中,我们主要...
HSSFClientAnchor anchor = new HSSFClientAnchor(0, 0, 1023, 255, 5, 1, 10, 10); anchor.setAnchorType(2); patriarch.createPicture(anchor, workbook.addPicture(baos.toByteArray(), HSSFWorkbook.PICTURE_...
HSSFComment comment = patriarch.createComment(new HSSFClientAnchor(0, 0, 0, 0, (short) 4, 2, (short) 6, 5)); // 创建批注 comment.setString(new HSSFRichTextString("这是一个批注")); // 设置批注文本 ...
HSSFClientAnchor anchor = new HSSFClientAnchor(0, 0, 1023, 255, (short) 1, 1, (short) 3, 3); HSSFPatriarch patriarch = sheet.createDrawingPatriarch(); patriarch.createPicture(anchor, pictureIdx); // ...
HSSFClientAnchor anchor = new HSSFClientAnchor(0, 0, 0, 0, (short)4, 1, (short)5, 2); HSSFComment comment = sheet.CreateDrawingPatriarch().CreateCellComment(anchor); comment.String = new ...