o: Paulo Soares; itext-questions@lists.sourceforge.net
> Subject: Re: [iText-questions] PdfContentByte and OutOfMemory
> Exception
>
> Hello,
>
> what do you exactly mean with "Render just the jtable rows
> you need for each
> page"?
>
> I want to print 32 r
AM
> To: itext-questions@lists.sourceforge.net
> Subject: [iText-questions] PdfContentByte and OutOfMemory Exception
>
> Hello,
>
> I print a JTable by using following code:
>
> PdfContentByte cb = writer.getDirectContent();
> cb.saveState();
> Graphics2D g2 = cb.createGr
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On
> Behalf Of kgnurps
> Sent: Friday, January 14, 2005 11:54 AM
> To: itext-questions@lists.sourceforge.net
> Subject: [iText-questions] PdfContentByte and OutOfMemory Exception
>
Hello,
I print a JTable by using following code:
PdfContentByte cb = writer.getDirectContent();
cb.saveState();
Graphics2D g2 = cb.createGraphics(width, heigth);
table.print(g2);
g2.dispose();
cb.restoreState();
My problem is a quite big JTable, which needs more than 1 page to be print.
I use the