1. 程式人生 > >POI實現Excel插入多張圖片

POI實現Excel插入多張圖片

POI的操作Excel時,不可避免有操作圖片的處理。怎麼插入圖片呢?網上也有不少介紹。

   下面的程式碼是向Excel中插入多張圖片的例子:

  1. public static void main(String[] args) {   
  2.          FileOutputStream fileOut = null;   
  3.          BufferedImage bufferImg = null;   
  4.          BufferedImage bufferImg1 = null;   
  5.         try {   
  6.             // 先把讀進來的圖片放到一個ByteArrayOutputStream中,以便產生ByteArray   
  7.             // 讀入圖片1   
  8.              ByteArrayOutputStream byteArrayOut = new ByteArrayOutputStream();   
  9.              bufferImg = ImageIO.read(new File("d:\\test11.jpg"));   
  10.              ImageIO.write(bufferImg, "jpg", byteArrayOut);   
  11.             // 讀入圖片2   
  12.              ByteArrayOutputStream byteArrayOut1 = new ByteArrayOutputStream();   
  13.              bufferImg1 = ImageIO.read(new File("d:\\test22.png"));   
  14.              ImageIO.write(bufferImg1, "png", byteArrayOut1);   
  15.             // 建立一個工作薄   
  16.              HSSFWorkbook wb = new HSSFWorkbook();   
  17.              HSSFSheet sheet1 = wb.createSheet("test picture");   
  18.              HSSFPatriarch patriarch = sheet1.createDrawingPatriarch();   
  19.              HSSFClientAnchor anchor = new HSSFClientAnchor(0, 0, 255, 255,   
  20.                      (short) 1, 1, (short) 5, 5);   
  21.              anchor.setAnchorType(3);   
  22.              HSSFClientAnchor anchor1 = new HSSFClientAnchor(0, 0, 255, 255,   
  23.                      (short) 6, 6, (short) 10, 10);   
  24.              anchor1.setAnchorType(3);   
  25.             // 插入圖片1   
  26.              patriarch.createPicture(anchor, wb.addPicture(byteArrayOut   
  27.                      .toByteArray(), HSSFWorkbook.PICTURE_TYPE_JPEG));   
  28.             // 插入圖片2   
  29.              patriarch.createPicture(anchor1, wb.addPicture(byteArrayOut1   
  30.                      .toByteArray(), HSSFWorkbook.PICTURE_TYPE_PNG));   
  31.              fileOut = new FileOutputStream("d:/workbook.xls");   
  32.             // 寫入excel檔案   
  33.              wb.write(fileOut);   
  34.              fileOut.close();   
  35.          } catch (IOException io) {   
  36.              io.printStackTrace();   
  37.              System.out.println("erorr : " + io.getMessage());   
  38.          } finally {   
  39.             if (fileOut != null) {   
  40.                 try {   
  41.                      fileOut.close();   
  42.                  } catch (IOException e) {   
  43.                      e.printStackTrace();   
  44.                  }   
  45.              }   
  46.          }   
  47.      }   

這樣執行後的效果如下:(完全按照HSSFClientAnchor設定的引數顯示)

這邊的效果沒有保持原來的倍率,有點失真了,是因為HSSFClientAnchor(0, 0, 255, 255, (short) 1, 1, (short) 5, 5); 這個建構函式的原因。

HSSFClientAnchor建構函式引數的意義如下:

     * @param dx1   the x coordinate within the first cell.
     * @param dy1   the y coordinate within the first cell.
     * @param dx2   the x coordinate within the second cell.
     * @param dy2   the y coordinate within the second cell.
     * @param col1 the column (0 based) of the first cell.
     * @param row1 the row (0 based) of the first cell.
     * @param col2 the column (0 based) of the second cell.
     * @param row2 the row (0 based) of the second cell.

其中dx1,dy1這個點是定義圖片在開始cell中的起始位置。這個點是開始cell的左上為原點,相對比率來確定的。不是絕對座標。

dx2,dy2這個點是定義圖片在終了cell的終了位置。這個點是終了cell的左上為原點,相對比率來確定的。不是絕對座標。

col1,row1是定義開始cell。

col2,row2是定義終了cell。

如果我們想要保持原始的圖片大小,改一下上面程式碼中的下面部分就可以了。

修改前:patriarch.createPicture(anchor, wb.addPicture(byteArrayOut.toByteArray(), HSSFWorkbook.PICTURE_TYPE_JPEG));

修改後:patriarch.createPicture(anchor, wb.addPicture(byteArrayOut
                    .toByteArray(), HSSFWorkbook.PICTURE_TYPE_JPEG)).resize(1);

修改後效果如下:

其中resize是放大或縮小的函式。用了這個函式後,HSSFClientAnchor建構函式中的圖片顯示的終了cell位置就不起作用了