Image img = Image.getInstance("/erp/images/imageFile.jpg");
  img.scaleToFit(180, 100);
  
  
  table = new PdfPTable(3);
  table.addCell("A");
  //cell = new PdfPCell(new Phrase("B"));
  cell = new PdfPCell(img);
  cell.setColspan(2);
  cell.setRowspan(2);
  table.addCell(cell);
  table.addCell("C");
  table.addCell("D");
  table.addCell("E");
  table.addCell("F");
  document.add(table);
 
沒有留言:
張貼留言