Itext生成PDF,PDFPTABLE插入图片

当table1插入图片时,pdf无法生成
PdfPTable table = new PdfPTable(3);
PdfPTable table1 = new PdfPTable(3);
table1.addCell("1");
table1.addCell("2");
Image img = Image.getInstance("D:/abing.png");
table1.addCell(img);
table.getDefaultCell().setColspan(3);
table.addCell(table1);
document.add(table);

    当这样可以正常运行
     PdfPTable table = new PdfPTable(3);
    PdfPTable table1 = new PdfPTable(3);
    table1.addCell("1");
    table1.addCell("2");
    table1.addCell("3");
    table.getDefaultCell().setColspan(3);
    table.addCell(table1);
    document.add(table);

http://www.cnblogs.com/chuyuhuashi/archive/2012/04/26/2471252.html
看下图片路径,路径斜杠写反了。