Re: [iText-questions] PdfWriter.FitsPage

2008-01-08 Thread Bruno Lowagie
trs wrote: I looked for something on the simulation mode in the tutorial and did not find anything. If you don't understand the examples on this tutorial page: http://itextdocs.lowagie.com/tutorial/objects/columns/index.php then you should read chapter 7 of this book: http://itext.ugent.be/itex

Re: [iText-questions] PdfWriter.FitsPage

2008-01-07 Thread trs
I looked for something on the simulation mode in the tutorial and did not find anything. Do you have a simple example you could post for e-mail me. Thank You! - Check out the new SourceForge.net Marketplace. It's the be

Re: [iText-questions] PdfWriter.FitsPage

2008-01-07 Thread Bruno Lowagie
trs wrote: What do I use now to determine if the PDFPTable will fit on a page? Create a ColumnText object. Add the table to the column. Add the column to the document in simulation mode. The ColumnText will tell you if the Table fits the page or not. br, Bruno smime.p7s Description: S/MIME C

[iText-questions] PdfWriter.FitsPage

2008-01-07 Thread trs
I have been using 4.0.4 ItextSharp. I have several calls that use PefWriter.FitsPage passing a PdfPTable. I just downloaded 4.0.7 and FitsPage does not accept PdfPTable any more just Table. What do I use now to determine if the PDFPTable will fit on a page? Thank YoU! ---

RE: [iText-questions] PDFWriter.fitspage(PDFPTable)

2004-12-16 Thread Paulo Soares
Title: [iText-questions] PDFWriter.fitspage(PDFPTable) You can try setSplitRows(true) and setSplitLate(true). From: [EMAIL PROTECTED] on behalf of Dan MillerSent: Mon 13-Dec-04 20:42To: [EMAIL PROTECTED]Subject: [iText-questions] PDFWriter.fitspage(PDFPTable) I am using the

[iText-questions] PDFWriter.fitspage(PDFPTable)

2004-12-16 Thread Dan Miller
I am using the PDFWriter.fitspage(PDFPTable) method to split a very large table over many pages. It seems that the more columns I am using in my table the less rows the PDFWriter will fit on a page. For example, when I have 4 columns the writer fills the page with 64 rows of data before hittin

RE: [iText-questions] PDFWriter.fitspage(PDFPTable)

2004-12-16 Thread Paulo Soares
Title: [iText-questions] PDFWriter.fitspage(PDFPTable) You have to scale the image according to the dpi. See the tutorial. From: [EMAIL PROTECTED] on behalf of Dan MillerSent: Mon 13-Dec-04 20:42To: [EMAIL PROTECTED]Subject: [iText-questions] PDFWriter.fitspage(PDFPTable) I am using

RE: [iText-questions] PDFWriter.fitspage(PDFPTable)

2004-12-13 Thread Paulo Soares
Title: [iText-questions] PDFWriter.fitspage(PDFPTable) It's setSplitLate(false). From: [EMAIL PROTECTED] on behalf of Paulo SoaresSent: Mon 13-Dec-04 22:56To: Dan Miller; [EMAIL PROTECTED]Subject: RE: [iText-questions] PDFWriter.fitspage(PDFPTable) You can try setSplitRows

[iText-questions] PdfWriter.fitsPage()

2004-02-19 Thread Carmona Perez, David
Hi Paulo, Bruno, I have the following needs: 1- Build tables with arbitrary rowspans and colspans 2- Tables can be very big in size, so memory consumption is important 3- Must be quick Discarded solutions 1- Use PdfPTable by need 1 2- Build a big table in memory and the render it, by need 2 3- U

[iText-questions] PdfWriter.fitsPage(Table) doesn't work

2003-03-24 Thread Chieh Tong
Hi, As I have just used the 0.97 lib, I noticed that when I have nested tables (ie adding a Table object into another Table object via the insertTable method), I will get a java.lang.ClassCastException when I call the PdfWriter.fitsPage(Table) method on that nested table. This doesn't happen whe