LwgImage img = LwgImage.getInstance("pngnow.png");
img.scalePercent(70);
Chunk ck = new Chunk(img, 0, -5);
LwgPdfPTable table = new LwgPdfPTable(3);
LwgPdfPCell cell = new LwgPdfPCell();
cell.addElement(new Chunk(img, 5, -5));
cell.setBackgroundColor(new Color(0xC0, 0xC0, 0xC0));
cell.setHorizontalAlignment(LwgElement.ALIGN_CENTER);
table.add("I see an image\non my right");
table.add(cell);
table.add("I see an image\non my left");