savi wrote: > Hi, > > I have a pdf with basic person information (pdf with Acroforms). Also, i > have another pdf with address information(again pdf with Acroforms). this > address pdf should be added to the person pdf depending on the number of > person address. Say if the person has 2 address, add the address.pdf two > times to the person pdf. Also, populate the address fields. How can i do > that without creating any temporary pdfs. > Since i am running this application in web, i will not have write access so > i cannot create dummy pdf. Only final output pdf can be created and > displayed to the user. how can i do this?
Create those files in memory (replace the FileOutputStream with ByteArrayOutputStream). Don't expect the content to "reflow"; reading your question I have the impression that you're expecting dynamic behavior from something that is static. -- This answer is provided by 1T3XT BVBA http://www.1t3xt.com/ - http://www.1t3xt.info ------------------------------------------------------------------------------ _______________________________________________ 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/
