[iText-questions] Image included in a PDF document as an external object

2003-01-08 Thread Goossenaerts, Dirk
Title: Image included in a PDF document as an external object Dear PDF specialists, In order to build a WEB based Printing on demand application, I'm looking for an example of a PDF document where the images are defined as external objects. I have found a lot of examples of PDF files where

RE: [iText-questions] About form field

2003-01-08 Thread Paulo Soares
It's setFieldFlags not setFlags. Best Regards, Paulo Soares -Original Message- From: Kumata Mitsugu [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 7:43 To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: [iText-questions] About form field Thank you Phillip

RE: [iText-questions] About form field

2003-01-08 Thread Paulo Soares
I'll update it. Best Regards, Paulo Soares -Original Message- From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 5:41 To: [EMAIL PROTECTED] Subject: Re: [iText-questions] About form field About password field; I added the folllowing code

[iText-questions] Watermark and annotations

2003-01-08 Thread Collenghi, Ruggero
Is it possible to add an annotation to a watremark? I receive the following error while running TiA Exception in thread main ExceptionConverter: java.lang.RuntimeException: 1 annotations had invalid placement pages.

RE: [iText-questions] Watermark and annotations

2003-01-08 Thread Paulo Soares
That error happens if you placed an annotation for, say, page 10 but your document only has 9 pages. A look at a short snippet of your code would be helpful. Best Regards, Paulo Soares -Original Message- From: Collenghi, Ruggero [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, January 08,

Re: [iText-questions] Watermark and annotations

2003-01-08 Thread Collenghi, Ruggero
Here is my code..a few simple lines.. -- try{ PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream((prod.nomeFat.substring(0, nomeFat.lastIndexOf(.))).concat(.pdf))); //writer.setEncryption(PdfWriter.STRENGTH40BITS, d, null,

RE: [iText-questions] Watermark and annotations

2003-01-08 Thread Paulo Soares
Before closing the document do document.removeWatermark(). A page event solution is more robust. Best Regards, Paulo Soares -Original Message- From: Collenghi, Ruggero [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 15:37 To: '[EMAIL PROTECTED]' Subject: Re:

[iText-questions] serious problem concatenating pdfs together

2003-01-08 Thread Sean Langford
Hello! I'm having some problems printing various pdfs which have had several other pdfs concatenated to it. This can be reproduced using itext's Concat example/utility as so: java Concat a.pdf src1.pdf src2.pdf; java Concat b.pdf a.pdf src3.pdf; java Concat c.pdf b.pdf src4.pdf; java Concat

[iText-questions] Indenting a Header!

2003-01-08 Thread John L. Lowenthal
Hello, I am having a problem formatting text that is to be part of the document header. The text is stored as a Paragraph, which is then passed as a parameter to create a HeaderFooter object. Finally, the setHeader method is used. The text shows up in the desired font, but here's the

Re: [iText-questions] About form field

2003-01-08 Thread phillip
But this code still produce /Ff 8192. Instead, I found next line is /F 12591104. I don't know what the key /F mean in this case. So I am still in trouble. That is the flag which is common to all annotations. I think it could be the internal problem in iText. I will look into it. Be