RE: [iText-questions] Re: Itext Performance

2005-05-10 Thread Paulo Soares
; itext-questions@lists.sourceforge.net > Subject: RE: [iText-questions] Re: Itext Performance > > a new PdfReader(pdf) takes 297 ms > > >From: "Paulo Soares" <[EMAIL PROTECTED]> > >To: "Xavier Robert" > ><[EMAIL PROTECTED]>, > >Subject:

RE: [iText-questions] Re: Itext Performance

2005-05-10 Thread Xavier Robert
a new PdfReader(pdf) takes 297 ms From: "Paulo Soares" <[EMAIL PROTECTED]> To: "Xavier Robert" <[EMAIL PROTECTED]>, Subject: RE: [iText-questions] Re: Itext Performance Date: Tue, 10 May 2005 16:42:25 +0100 What's the time it takes just to "ne

RE: [iText-questions] Re: Itext Performance

2005-05-10 Thread Paulo Soares
What's the time it takes just to "new PdfReader(pdf)"? > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Xavier Robert > Sent: Tuesday, May 10, 2005 4:26 PM > To: itext-questions@lists.sourceforge.net >

[iText-questions] Re: Itext Performance

2005-05-10 Thread Xavier Robert
Thank you for your response. All right, an ID isn't a good way of work. But why the performance are so different ? On my computer : - 1st method 1422 pages ->10234 ms - 2nd method 1422 pages -> 1515 ms Is there a better method ? Moreover how can I find a intelligent way ? -

[iText-questions] RE: iText performance issue

2003-07-02 Thread Paulo Soares
PdfPTable doesn't support adding cells at arbitrary places. You'll have to create yourself and array, fill it and then create the PdfPTable reading the array in sequence. Best Regards, Paulo Soares > -Original Message- > From: Sudame, Rahul (Cognizant) [SMTP:[EMAIL PROTECTED] > Sent: Wedn

Re: [iText-questions] Re: iText performance issue

2003-06-28 Thread Scott Hamilton
and, more appreciably, it works! From: "Paulo Soares" <[EMAIL PROTECTED]> To: "Sudame, Rahul \(Cognizant\)" <[EMAIL PROTECTED]>,<[EMAIL PROTECTED]> CC: <[EMAIL PROTECTED]> Subject: [iText-questions] Re: iText performance issue Date: Sat, 28 Jun

[iText-questions] Re: iText performance issue

2003-06-28 Thread Paulo Soares
I suspect that another exception was thrown that prevented the writing of even a single page. If you really want to build a giant table use PdfPTable that doesn't have those performance issues but you should build a page at time. Do a search on the mailing list for "fitsPage", there's code for a pa