Re: [iText-questions] Create PDF file in memory using PdfStamper

2006-11-28 Thread Bruno Lowagie (iText)
Peyman Pouryekta wrote: > I am using the spring framework and there is a class called > AbstractPdfView to create PDFs with iText. > there is one method to create a PDF. > > protected abstract void buildPdfDocument( OK, I asked a colleague for his copy of "Spring in Action": http://www.manning.

Re: [iText-questions] Create PDF file in memory using PdfStamper

2006-11-28 Thread Peyman Pouryekta
Ok. Thanks for the trouble. Bruno Lowagie (iText) schrieb: > Peyman Pouryekta wrote: > >> I am using the spring framework and there is a class called >> AbstractPdfView to create PDFs with iText. >> there is one method to create a PDF. >> >> protected abstract void buildPdfDocument(Map model, >

Re: [iText-questions] Create PDF file in memory using PdfStamper

2006-11-28 Thread Bruno Lowagie (iText)
Peyman Pouryekta wrote: > I am using the spring framework and there is a class called > AbstractPdfView to create PDFs with iText. > there is one method to create a PDF. > > protected abstract void buildPdfDocument(Map model, > com.lowagie.text.Document document, > com.lowagie.text.pdf.PdfWr

Re: [iText-questions] Create PDF file in memory using PdfStamper

2006-11-28 Thread Peyman Pouryekta
Hi Bruno, I've got a similar problem. I am using the spring framework and there is a class called AbstractPdfView to create PDFs with iText. there is one method to create a PDF. protected abstract void buildPdfDocument(Map model, com.lowagie.text.Docume

Re: [iText-questions] Create PDF file in memory using PdfStamper

2006-10-27 Thread Bruno Lowagie (iText)
Hello Sendil, you post a question: "how to create a PDF in memory" and then you answer it yourself: "with ByteArrayOutputStream". That's very odd. This is an altered code snippet: ... ByteArrayOutputStream baos = new ByteArrayOutputStream(); PdfStamper stamper = new PdfStamper(reader, baos);* ...

[iText-questions] Create PDF file in memory using PdfStamper

2006-10-26 Thread Dhakshinamoorthy, S. (Sendil)
Title: Create PDF file in memory using PdfStamper Hi    I am using PdfStamper to read a existing fillable PDF file, fill the form fields with values and display the filled PDF in browser.  The following is an excerpt from my code                 // Generate a outputFile Na