[iText-questions] Filling dynamic (repeating) form fields

2007-02-13 Thread leon breedt
Hi all I am quite new to PDF generation, therefore may not have all of my terminology completely straight, please feel free to correct me. What I have at present (and working just fine), is a template PDF form, using the PdfStamper to fill the values of static fields, then flatten the form, and

Re: [iText-questions] Commercial iText license

2007-02-13 Thread Eugene R
Hi Bill Commercial support would be a bonus, but commercial license is a necessity. Unfortunately neither MPL nor LGPL would work in our case due to company's Open Source policy. Please let me know if somebody inherited right to sell from PDF Sages. Thank you, Eugene Bill Ensley wrote: >Are y

Re: [iText-questions] PDF to BMP

2007-02-13 Thread Bill Ensley
Also, look at Jpedal, I am having great success with the latest version. -Bill Ensley www.bearprinting.com > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Stuart Jansen > Sent: Tuesday, February 13, 2007 3:29 PM > To: Post all your questions ab

Re: [iText-questions] PDF to BMP

2007-02-13 Thread Stuart Jansen
On Tue, 2007-02-13 at 21:49 +0100, Philipp Schneider wrote: > I have a question: Do you know a way, to convert a pdf file to a bmp > or other image file. It was best, if Adobe Reader isn't required to be > installed. iText can create PDFs, but it does not have the ability to render (or display) th

Re: [iText-questions] New Page in PdfPTable

2007-02-13 Thread Paulo Soares
That's not possible PdfPTable. Paulo - Original Message - From: <[EMAIL PROTECTED]> To: Sent: Tuesday, February 13, 2007 10:09 PM Subject: [iText-questions] New Page in PdfPTable >I need to create a page break in the middle of a PdfPTable, I've tried > doing things such as: > > PdfPCe

[iText-questions] PDF to BMP

2007-02-13 Thread Philipp Schneider
Hi, firstly a lot of thanks for the great iText Library! Its great! I have a question: Do you know a way, to convert a pdf file to a bmp or other image file. It was best, if Adobe Reader isn't required to be installed. Thanks! Best regards, Philipp Schneider ---

[iText-questions] New Page in PdfPTable

2007-02-13 Thread Jim_Mitchener
I need to create a page break in the middle of a PdfPTable, I've tried doing things such as: PdfPCell mycell = new PdfPCell(new Phrase(Chunk.NEXTPAGE)); mycell.setColspan(tableWidthHere); mytable.addCell(mycell); But it simply adds an empty box for a row and moves on on the same page. Is there

Re: [iText-questions] Converting PDF form to HTML form

2007-02-13 Thread Michael Dolgonos
Dirk.Weigenand gmx.de> writes: > Do you have an xdp representation of that PDF file? If so you can use > xslt to transform the form to html. > > I have such a beast lying around. Not very useful if you have multiple > pages since then those will be displayed one over another. > > If there is in

[iText-questions] Watermarking PDF

2007-02-13 Thread MCC
I have put in place a watermarking mechanism for PDF documents where I am applying a watermark with the Gray and Font Helvetica. The watermark looks fine and fairly visible on most of the PDF documents however on some PDFs, the color changes to blue, and sometimes to very light blue where it is al

Re: [iText-questions] Removing layers from a PDF

2007-02-13 Thread Paulo Soares
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Ignacio Ruiz-de-Conejo > Sent: Tuesday, February 13, 2007 3:52 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] Removing layers from a PDF > > Hello, > > Working with

[iText-questions] Removing layers from a PDF

2007-02-13 Thread Ignacio Ruiz-de-Conejo
Hello, Working with documents that contain sensible data, I wanted to display all the information on the screen, but hide some parts of the docs when printing them. I implemented that by importing the original pages and generating new docs with OCG, that would not show, but overprint (and hide) t

Re: [iText-questions] image and Page Number in Footer in RTF

2007-02-13 Thread Mark Hall
On 13.02.2007, at 14:11, Raghu wrote: > We have done for PDF as below. > But how this is to be done for RTF. > > I mean what my class should extend(PdfPageEventHelper for pdf) and > method onEndPage(for pdf) > > What about extending and method for RTF. Please read the documentation in detail. Th

Re: [iText-questions] java.lang.OutOfMemoryError while creatingPDfReader

2007-02-13 Thread Suresh
Hi Paulo, That works. Thank you very much. Suresh Paulo Soares wrote: > > Use the PdfReader constructor that has a RandomAccessFileOrArray. > > Paulo > > - Original Message - > From: "Suresh" <[EMAIL PROTECTED]> > To: > Sent: Monday, February 12, 2007 7:26 PM > Subject: [iText-que

Re: [iText-questions] image and Page Number in Footer in RTF

2007-02-13 Thread Raghu
Mark, We have done for PDF as below. But how this is to be done for RTF. I mean what my class should extend(PdfPageEventHelper for pdf) and method onEndPage(for pdf) What about extending and method for RTF. - public class TestPdf extends PdfPageEventHelper {

Re: [iText-questions] Urgent Plz Help....

2007-02-13 Thread Stefan Pfingstl
You havn't installed X your system. To use iText start java with thoe option java -Djava.awt.headless=true ... With this option you don't need a X-System on your computer. See http://java.sun.com/developer/technicalArticles/J2SE/Desktop/headless/ or http://javatechniques.com/public/java/docs/hos

Re: [iText-questions] Urgent Plz Help....

2007-02-13 Thread Paulo Soares
This is generally an indication that you don't have X installed in the server and, as a consequence, the Java awt libraries were not installed. Paulo > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Srikanth > Sent: Tuesday, February 13, 2007 3:

[iText-questions] Urgent Plz Help....

2007-02-13 Thread Srikanth
Hi This is srikanth., I am getting the following error when i am trying to generate PDF with the itext., and is we need to add any dependencies jar(pja.jar & pjatools.jar) s in Linux becoz in windows it is working fine. java.lang.UnsatisfiedLinkError: /usr/java/j2sdk1.4.2/jre/lib/i386/libawt.

Re: [iText-questions] image and Page Number in Footer in RTF

2007-02-13 Thread Mark Hall
On 13.02.2007, at 08:30, Raghu wrote: > What change I need to do to get this footer along with page Number in > attached java file. > Is it possible to have such requirement in RTF? Just having briefly looked at your code, you HAVE to set the header before you open the document. Greetings, Mar

Re: [iText-questions] colspan in Table in RTF

2007-02-13 Thread Mark Hall
On 13.02.2007, at 08:36, Raghu wrote: > how to add image in second row with colspan of 2 ? Use the setColspan method on the Cell object. Greetings, Mark - Using Tomcat but need to do more? Need to support web services, secu

[iText-questions] colspan in Table in RTF

2007-02-13 Thread Raghu
A table has two rows ,two columns first row has data in two columns, Second row has to have image with colspan 2 Table table = new Table(3); table.setWidth(100); table.setPadding(2); table.setDefaultHorizontalAlignment(Element.ALIGN_CENTER); Cell cell = new Cell(new Chunk(img, 0, -13)); cell.se