Re: [iText-questions] Antwort: Pdf Table footer and bottom margin

2012-01-24 Thread aszomor
> But this is not my case, because in footer I add just simple things like > date, page number, small text . > This example add the total number of pages only into the footer. -- Keep Your Developer Skills Current with

Re: [iText-questions] Antwort: Pdf Table footer and bottom margin

2012-01-24 Thread dpmihai
Only one thing to add, because I do not take widths into account. If you have a cell footer with text which has to wrap on more rows, the footer height won't be correct. But this is not my case, because in footer I add just simple things like date, page number, small text . -- View this messag

Re: [iText-questions] Antwort: Pdf Table footer and bottom margin

2012-01-24 Thread aszomor
Hi, iTextInAction2Ed.Chapter05.MovieCountries1 -> PdfPageEventHelper! Attila. Idézet (dpmihai ): > Thank you for the response. > > I choose to compute first my footer table height. > I create the document like new Document(..., BOTTOM + footerHeight); > I wrote the footer at at Y = document.bo

Re: [iText-questions] Antwort: Pdf Table footer and bottom margin

2012-01-24 Thread dpmihai
Thank you for the response. I choose to compute first my footer table height. I create the document like new Document(..., BOTTOM + footerHeight); I wrote the footer at at Y = document.bottomMargin() (because this now contains the footer height set at document creation) Only one problem I encoun

[iText-questions] Antwort: Pdf Table footer and bottom margin

2012-01-23 Thread Benjamin Rein
Hi, you have to add the footer content with the class ColumnText in simulation mode (check http://itextpdf.com/themes/keywords.php#C). This has to be done before adding the other content above the footer to the page (onEndPage method is too late). With this tool you know how much space is need