`

HSSFClientAnchor 说明

 
阅读更多

 

 

  1. public HSSFClientAnchor(int dx1,int dy1,int dx2,int dy2,short col1,int row1,short col2,
  2. int row2);Creates a new client anchor and sets the top-left and bottom-right coordinates of the anchor.
  3. Parameters:
  4. dx1 - the x coordinate within the first cell.
  5. dy1 - the y coordinate within the first cell.
  6. dx2 - the x coordinate within the second cell.
  7. dy2 - the y coordinate within the second cell.
dx2:第二个单元格的开始X坐标
dy2:第二个单元格的开始y坐标
 
  1. col1 - the column (0 based); of the first cell.
  2. row1 - the row (0 based); of the first cell.
  3. col2 - the column (0 based); of the second cell.
  4. row2 - the row (0 based); of the second cell.
  5. col1 图片的左上角放在第几个列cell, 
    row1 图片的左上角放在第几个行cell, 

    col2 图片的右下角放在第几个列cell, 
    row2 图片的右下角放在第几个行cell,
  6. 列宽 
    sheet.setColumnWidth((short)column,(short)width); 
    行高 
    row.setHeight((short)height);
  7. 添加多个图片时:多个pic应该share同一个DrawingPatriarch在同一个sheet里面。
分享到:
评论

相关推荐

    JAVA的poi实现模版导出excel(带图片).docx

    以下是关键知识点的详细说明: 1. **Apache POI库**:Apache POI是一个开源项目,它提供了Java API来处理Microsoft Office格式的文件,如XLS(Excel 97-2003)和XLSX(Excel 2007及以上)。在这个例子中,我们主要...

    POI和JFreeChart框架实现生成Excel文件(生成 统计图)

    HSSFClientAnchor anchor = new HSSFClientAnchor(0, 0, 1023, 255, 5, 1, 10, 10); anchor.setAnchorType(2); patriarch.createPicture(anchor, workbook.addPicture(baos.toByteArray(), HSSFWorkbook.PICTURE_...

    java_poi操作excel

    HSSFComment comment = patriarch.createComment(new HSSFClientAnchor(0, 0, 0, 0, (short) 4, 2, (short) 6, 5)); // 创建批注 comment.setString(new HSSFRichTextString("这是一个批注")); // 设置批注文本 ...

    poi-quick-guide

    HSSFClientAnchor anchor = new HSSFClientAnchor(0, 0, 1023, 255, (short) 1, 1, (short) 3, 3); HSSFPatriarch patriarch = sheet.createDrawingPatriarch(); patriarch.createPicture(anchor, pictureIdx); // ...

    NPOI使用手册

    HSSFClientAnchor anchor = new HSSFClientAnchor(0, 0, 0, 0, (short)4, 1, (short)5, 2); HSSFComment comment = sheet.CreateDrawingPatriarch().CreateCellComment(anchor); comment.String = new ...

Global site tag (gtag.js) - Google Analytics