[iText-questions] bulk PDF generation

2004-12-21 Thread rajesh.v.nerlikar
Does anyone know what would be the most efficient way to populate the same form's fields with different sets of values and automatically print the results? >From what I've read so far, I was thinking about creating a list of (X)FDFs >and merging them with the original PDF similar to the way des

[iText-questions] License question

2004-12-21 Thread Adam Smith
I am using iText to create pdf reports in real-time for the company I work for... on the FAQ, I see that we need provide copyright and link to the iText website... where do I have to do this? Inside the pdf document? On my company website?

RE: [iText-questions] 1.5 compression and Adobe Reader 5.05

2004-12-21 Thread Paulo Soares
1.5 compression can only be used with consumers that support the 1.5 specification. That's Acrobat 6 and higher. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of [EMAIL PROTECTED] > Sent: Tuesday, December 21, 2004 3:50 PM > To: itext-questions@l

Re: [iText-questions] 1.5 compression and Adobe Reader 5.05

2004-12-21 Thread Leonard Rosenthol
At 10:49 AM 12/21/2004, [EMAIL PROTECTED] wrote: Using iText Ver:1.39 I have added setFullCompression() to my PDFwriter object and achieved a 30% reduction in the size of our reports using Adobe Reader 6.0.1. Great However when trying to open the file with Adobe Reader 5.0.5 I receive the

[iText-questions] 1.5 compression and Adobe Reader 5.05

2004-12-21 Thread Tony . L . Reller
Using iText Ver:1.39 I have added setFullCompression() to my PDFwriter object and achieved a 30% reduction in the size of our reports using Adobe Reader 6.0.1. Great However when trying to open the file with Adobe Reader 5.0.5 I receive the a File is damage errorCan 1.5 compression on

RE: [iText-questions] adding an existing pdf-document

2004-12-21 Thread Paulo Soares
Title: adding an existing pdf-document You have two options:   - import the other pdf and place the pages in your new pdf. See the example handout_pdf.java.   - close your new pdf and use concat_pdf.java to join it with other pdf.     From: [EMAIL PROTECTED] [mailto:[EMAIL PROTE

[iText-questions] adding an existing pdf-document

2004-12-21 Thread Felix.Haberlach
Title: adding an existing pdf-document Hi @ all I am new to itext and i hope someone of you can help me. I created a document with itext including tables and images. that works pretty fine! Now i wounder if i can add a complete existing pdf-doc. to my new generated pdf. is that possible?

[iText-questions] Re: Pointers required on editing a RTF document

2004-12-21 Thread Bruno Lowagie
Jithendra Ganji wrote: Hi, We are having requirement of editing an exiting RTF document. I didn’t find any such provision to read the RTF file using iText. Reading RTFs isn't possible with iText. Use Apache POI. br, Bruno --- SF email

[iText-questions] Pointers required on editing a RTF document

2004-12-21 Thread Jithendra Ganji
Title: Regarding license issues Hi,   We are having requirement of editing an exiting RTF document. I didn’t find any such provision to read the RTF file using iText.   Can you please suggest me some way around to achieve the functionality.   Your sooner reply is greatly appreciate

RE: [iText-questions] Signing a pdf document which is originally encrypted

2004-12-21 Thread Paulo Soares
That's a different question. Create the PdfReader with the open password and use it with a PdfStamper that is not open in append mode. You can reapply the encryption setting in PdfStamper. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Wahaj > S

[iText-questions] Problem with setting different fony styles

2004-12-21 Thread Jithendra Ganji
Title: Regarding license issues Hi,   I am facing problem in setting different font styles within a document. If I use font style as italic or bold italic once, then after even though I set the font as normal or bold for my next elements it is taking only italic.   Is it the problem wi

Re: [iText-questions] Signing a pdf document which is originally encrypted

2004-12-21 Thread Wahaj
Well my original question was whether we can sign a pdf document which is not signed but encrypted which is not possible using iText. My next question is can it be possible to remove the password based security from a pdf document using iText ?. If its possible then we can first remove the passwor

[iText-questions] Big table - many columns AND many rows - auto splitting

2004-12-21 Thread Sam Coomar
Hi - excellent job guys!!! The requirement is to print a large table such that it has column wrapping/splitting (because not all columns will fit on one page). AS WELL AS row wrapping/splliting (because not all rows will fit on one page). There could be more than one wrapping either column wise

[iText-questions] Re: Adding Images To Table

2004-12-21 Thread Piotr Duda
hi, try something like this... Phrase phrase = new Phrase(new Chunk(Image.getInstance("img.png"), 0, 0) ) ; Cell cell = new Cell(phrase); table.addCell(cell); kahuna --- SF email is sponsored by - The IT Product Guide Read honest & candid revie

Re: [iText-questions] Problem in Sax Parser

2004-12-21 Thread Bruno
Quoting Amit Chawla <[EMAIL PROTECTED]>: > I am parsing html document to generate PDF using HTML .. > > For some HTML document its parsing and generating PDF and most html it does > not do it and my Web Browser shows blank page and PDF is not generated > > > > I am not able to underst