Stephan Trautmann wrote: > By the way another question. > Just in case I am adding a very large table with the spamper, > only the first party of the table will be displayed, because the stamper > only works on one page at a time...
That's correct. > is there a possibility to add the rest of my content on a new inserted page > using the current stamper object... Ask the reader for the total number of pages read after you created the reader instance: int pageCt = reader.getNumberOfPages(); Rectangle pagesize = reader.getPageSizeWithRotation(1); You have a loop where you're adding the column. As long as there's more content in the ColumnText object, do: stamper.insertPage(++pageCt, pagesize); Don't forget to update the Y-line of your column text object, or you'll create an endless loop. -- This answer is provided by 1T3XT BVBA http://www.1t3xt.com/ - http://www.1t3xt.info ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/Challenge _______________________________________________ iText-questions mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/itext-questions Buy the iText book: http://www.1t3xt.com/docs/book.php Check the site with examples before you ask questions: http://www.1t3xt.info/examples/ You can also search the keywords list: http://1t3xt.info/tutorials/keywords/
