<       cell = new PdfPCell(Image.getInstance(pic, null));

IMHO this is the default behaviour that this image will fill in the cell.

Try to insert an image with Chunk. Remember, you can create Chunk with image
and this Chunk can be used to create Phrase.

Something like this...

Chunk ch = new Chunk(image, 0, 0);
Phrase ph = new Phrase(ch);
cell = new PdfPCell(ph);

This should work with padding as well as with cell align.

Enjoy.

GG

<<attachment: winmail.dat>>

Reply via email to