Re: [iText-questions] Hello, blank pages coming when writing to PDF in web application

2009-07-27 Thread Alexis Pigeon
hi Swapna, 2009/7/28 Swapna Matanam > > Hello team, > > Before mailing to the mailing list, i have read the iText book completely . > In the book its mentioned to check if the PDF is getting generated properly > at server end. > Yes thats true. I am able to generate the PDF properly in my serve

[iText-questions] Hello, blank pages coming when writing to PDF in web application

2009-07-27 Thread Swapna Matanam
Hello team, Before mailing to the mailing list, i have read the iText book completely . In the book its mentioned to check if the PDF is getting generated properly at server end. Yes thats true. I am able to generate the PDF properly in my server. But when i use HTTPServlet response, i am gett

Re: [iText-questions] Dynamic subforms don't render when a PDF is flattened

2009-07-27 Thread Scott Dunbar
Thanks for the information Paulo. I've spent a bunch of time today trying to find out a better solution and I'm stuck. I'd like request from the community some insight. I feel as if I'm approaching the architecture the wrong way as I keep hitting brick walls and would appreciate any ideas.

Re: [iText-questions] Dynamic subforms don't render when a PDF is flattened

2009-07-27 Thread Paulo Soares
iText don't support dynamic forms, as far as I know only Adobe has tools to work with them. Paulo > -Original Message- > From: Scott Dunbar [mailto:sc...@xigole.com] > Sent: Monday, July 27, 2009 7:16 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] Dynamic s

[iText-questions] Dynamic subforms don't render when a PDF is flattened

2009-07-27 Thread Scott Dunbar
Hi all, I've got a PDF form that has a dynamic subform in it. My goal is to combine an original PDF and the XDP datasets from a submitted form into a single PDF. This is working just fine. However, if I call setFormFlattening(true) on the PdfStamper then the dynamic subforms do not show up.

Re: [iText-questions] How to write a byte array response from web service to a newly created pdf file

2009-07-27 Thread Singh, Vikram
This might help, here is some java code we use to write bytes to pdf file public void writeFinalOutputToFile() throws IOException { File outputFile = File.createTempFile("temp.pdf"); InputStream is = generateFinalPDF(); boolean haveNotClosedInput = true; boolean haveNotClose

[iText-questions] Duplicate Images (and fonts)

2009-07-27 Thread Koen Mulders
Hi, I have a Pdf that is the result of some sort "mail merge". While the Pdf is correct, it is huge in size because every item in the merge contains the same high resolution images and embedded fonts. I'm hoping to use iText (the .Net version) to alter the Pdf file so each image's byte content

[iText-questions] Why does setBackgroundColor obscure cbu images

2009-07-27 Thread twinmar
I am setting the background colour of my document prior to the creation of the document object/writer by creating a rectangle the size of the page and then using setBackgroundColor to set the background colour. I then add various images/objects to the cbu PDF content byte. The background colour

Re: [iText-questions] Stamping permission-secured documents

2009-07-27 Thread Cyrille Chenevert
Hey, Thanks it worked perfectly. I was looking at examples similar, but none of them included these options for the stamper. > From: psoa...@glintt.com > To: itext-questions@lists.sourceforge.net > Date: Mon, 27 Jul 2009 15:32:49 +0100 > Subject: Re: [iText-questions] Stamping permission-sec

Re: [iText-questions] How to write a byte array response from web service to a newly created pdf file

2009-07-27 Thread glen . hamel
That's not an iText question.. The how to will depend on the language you are using.. Check the corresponding forums for the language in question to get your answer there.. Glen Hamel Lead Programmer / Technician Auric Networks Canada, Inc. 570 Orwell Street, Unit 1 Mississauga, Ontario L5A 3

Re: [iText-questions] rectnagle with one rounded corner

2009-07-27 Thread Paulo Soares
Adapt the round rectangle code in PdfContentByte. Paulo > -Original Message- > From: Nirmal Sankar [mailto:nirmal.san...@gmail.com] > Sent: Monday, July 27, 2009 3:24 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] rectnagle with one rounded corner > > Hi, >

Re: [iText-questions] Stamping permission-secured documents

2009-07-27 Thread Paulo Soares
Did you see http://1t3xt.be/?X43? Paulo > -Original Message- > From: cyrille.chenev...@forces.gc.ca > [mailto:cyrille.chenev...@forces.gc.ca] > Sent: Monday, July 27, 2009 3:02 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] Stamping permission-secured do

[iText-questions] rectnagle with one rounded corner

2009-07-27 Thread Nirmal Sankar
Hi, Can some one tell me how can i draw a rectangle with only one rounded corner using itext project,as shown in the attached doc? Regards, Nirmal Sankar Doc1.doc Description: MS-Word document -- __

[iText-questions] Stamping permission-secured documents

2009-07-27 Thread Cyrille.Chenevert
Hi! My questions is the following: if I have a document that is permission-secured, is there any way to stamp it without these permissions being affected? Here's the reason for my question: I have a document created with LiveCycle 8.0. It's a form that is used to make logistical purchases. If

Re: [iText-questions] Download all examples from iText in Action

2009-07-27 Thread blabla9899
Alexis, Thank you for your prompt answer. On Monday, 27 July, 2009, at 02:46PM, "Alexis Pigeon" wrote: >-- > >___ >iText-questions mailing list >iText-questions@lists.source

Re: [iText-questions] Download all examples from iText in Action

2009-07-27 Thread Alexis Pigeon
Hi blabla9899, 2009/7/27 > Hello, > > I've just bought the "iText in Action" book and I'd like to download all > examples at once (zip archive). The link provided in the book only let me > download them one by one. Does anyone know where I can find a zip archive? > This has been answered many t

[iText-questions] Download all examples from iText in Action

2009-07-27 Thread blabla9899
Hello, I've just bought the "iText in Action" book and I'd like to download all examples at once (zip archive). The link provided in the book only let me download them one by one. Does anyone know where I can find a zip archive? Thanks in advance! --

Re: [iText-questions] setHeaderRows and setRowSpan

2009-07-27 Thread Bruno Lowagie
netslow wrote: > Thanks for your help, I solved my problem. I built latest jar from svn and > now setHeaderRows() works exactly as it should. FYI: after running my test examples, I noticed that the patch I posted causes problems when you extend the last row of a table. A new patch was posted la

Re: [iText-questions] setHeaderRows and setRowSpan

2009-07-27 Thread netslow
I'm sorry. I didn't meant to offend anybody. It was just a joke(lazyness I mean). Thanks for your help, I solved my problem. I built latest jar from svn and now setHeaderRows() works exactly as it should. Bruno Lowagie (iText) wrote: > > netslow wrote: >> Well, it's very commendable. But I s

Re: [iText-questions] How to write a byte array response from web service to a newly created pdf file

2009-07-27 Thread Paulo Soares
You are in the wrong forum. Look for a Java forum. Paulo > -Original Message- > From: Shailendra [mailto:shailendrachan...@gmail.com] > Sent: Monday, July 27, 2009 8:20 AM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] How to write a byte array response > from

[iText-questions] How to write a byte array response from web service to a newly created pdf file

2009-07-27 Thread Shailendra
Hi, My requirement is to call a web service method which returns a byte array. After getting the byte array from the web service response, i need to create a PDF file and set the byte array as the content of the pdf file. I'm able to create the pdf file and write content to the pdf file. However