What I'm trying to do is emulate a web page's rendering, but in PDF. I want
to have multiple images placed on a single line, with images that cannot fit
automatically wrap to the next line. Using PdfTables would require knowing
in advance how many images should be placed, how wide they will end up
t 6 images should be fitting easily.
Any insight?
Cheers,
Mathieu Mallet
On Jan 29, 2008 2:03 AM, Bruno Lowagie <[EMAIL PROTECTED]> wrote:
> Mathieu Mallet wrote:
> > Here is the proper (incorrectly rendered) file.
>
> I vaguely remember writing some code that adjusted the
Apologies -- I appear to have attached the wrong PDF file. Here is the
proper (incorrectly rendered) file.
Mathieu Mallet
*Apollo Systems Research Corporation*
On Jan 28, 2008 3:21 PM, Mathieu Mallet <[EMAIL PROTECTED]> wrote:
> Heya,
>
> I'm trying to display multiple ima
i++)
{
final Image image = Image.getInstance(img, null);
paragraph.add(new Phrase(new Chunk(image, 0, 0, true)));
}
doc.add(paragraph);
doc.close();
}
}
Mathieu Mallet
*Apollo Systems Research Corporation*
test.pd