[iText-questions] Open source project for NetBeans / iText integration

2006-07-07 Thread Geertjan Wielenga
https://nbitextsupport.dev.java.net/ -- Geertjan Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.fa

Re: [iText-questions] Changing document properties of pdf

2006-07-07 Thread Leonard Rosenthol
At 10:54 AM 7/7/2006, Mair, Paul wrote: >So maybe it is also possible to add permissions to the document in order >to let it sign by Acrobat Reader. Yes, using Adobe LiveCycle Reader Extensions Server. >Is it possible to set this rights by iText? No. It's one of two "internal

Re: [iText-questions] Changing document properties of pdf

2006-07-07 Thread Mair, Paul
But I'm using the PdfStamper Class to add an empty a blank signature field. In addition with the PdfStamper Class it is also possible to set encryption. So maybe it is also possible to add permissions to the document in order to let it sign by Acrobat Reader. In the help of Acrobat Reader 7 is writ

Re: [iText-questions] Changing document properties of pdf

2006-07-07 Thread Leonard Rosenthol
At 10:22 AM 7/7/2006, Mair, Paul wrote: >I have investigated on the problem and I have found out, that I can >sign the created document in Acrobat Standard 6 but not in Acrobat >Reader 7 or Acrobat Reader 6. Reader is just that - a READER. It doesn't support digitally signing PDFs.

Re: [iText-questions] Changing document properties of pdf

2006-07-07 Thread Mair, Paul
Hi, I have investigated on the problem and I have found out, that I can sign the created document in Acrobat Standard 6 but not in Acrobat Reader 7 or Acrobat Reader 6. Is there something special that I have to do or set a parameter in order to can sign the document in Acrobat Reader? T

[iText-questions] iText and mailing labels

2006-07-07 Thread Gary Bisaga
Hi, this tool looks really cool. I am very excited about using it. I have searched the archives and the internet and there is some discussion about using iText for creating standard mailing labels, but not much. I have tried it using a PdfPTable with absolute positioning on the page, and it prints

[iText-questions] Watermarks and Signatures

2006-07-07 Thread Spencer, Winston
to do that at documentation system. Can everyone tell me how I can put tab characters in the PDF? Thanks. Juan Carrasco Moya [EMAIL PROTECTED] 961718257 IDEAL. Grupo PALLUC -- next part -- An HTML attachment was scrubbed... URL: htt

Re: [iText-questions] How to include tab characters in a PDF?

2006-07-07 Thread Juan Carrasco
OK. Thanks for all Juan Carrasco Moya [EMAIL PROTECTED] 961718257 IDEAL. Grupo PALLUC -Mensaje original- De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] En nombre de bruno Enviado el: viernes, 07 de julio de 2006 9:22 Para: Post all your questions about iText here Asunto: Re: [iText-que

[iText-questions] Changing document properties of pdf

2006-07-07 Thread Mair, Paul
Hi, I have added an empty signature field into a existing pdf document. But I’m not able to sign the document because in the Document Properties the Sign is set to Not Allowed. The PDF Version of the file is 1.3 (Acrobat 4.x). Is there a possibility to manipulate this flag with iText?

Re: [iText-questions] Watermark and Signatures

2006-07-07 Thread Paulo Soares
The signature is there to show that the document was not changed. If you change the document the signature becomes invalid. It's not rocket science. Paulo - Original Message - From: "mohan alagurajan" <[EMAIL PROTECTED]> To: Sent: Friday, July 07, 2006 10:39 AM Subject: [iText-question

[iText-questions] Watermark and Signatures

2006-07-07 Thread mohan alagurajan
Hi All, I am new to iText. I have a requirement where I have to apply watermark to an existing PDF, the PDF has digital signatures. I am using PdfStamper to apply the watermark, the code snippet is as follows: PdfReader reader = new PdfReader("C:/form.pdf"); int n = reader.getNumberOfPages();

Re: [iText-questions] How to include tab characters in a PDF?

2006-07-07 Thread Raphael Watier
Just a suggestion ... I used the character '\n' in some Chunks ... Maybe the '\t' works well ... ??? br Raphael France bruno a écrit : Juan Carrasco wrote: Hi to all. I want to write some tab characters in a PDf, but I can’t find the method to do that at documentation system.

Re: [iText-questions] iText

2006-07-07 Thread bruno
rakib islam wrote: > Hi > I am RAKIB trying to use iText Library.To install iText library i > follow the rules written by "*Christoph Bartnick*".But when i create > the "*CLASSPATH*" variable with the value of iText Jar File's > destination path I can compile every java program but fail to

Re: [iText-questions] How to include tab characters in a PDF?

2006-07-07 Thread bruno
Juan Carrasco wrote: > Hi to all. I want to write some tab characters in a PDf, but I can’t > find the method to do that at documentation system. > > Can everyone tell me how I can put tab characters in the PDF? > PDF doesn't have the concept of tabs (nor has iText). Try using a PdfPtable instead

[iText-questions] How to include tab characters in a PDF?

2006-07-07 Thread Juan Carrasco
Hi to all. I want to write some tab characters in a PDf, but I can’t find the method to do that at documentation system. Can everyone tell me how I can put tab characters in the PDF?   Thanks.     Juan Carrasco Moya [EMAIL PROTECTED] 961718257 IDEAL. Grupo PALLUC   Usi

Re: [iText-questions] Image and absolutePosition

2006-07-07 Thread bruno
Raphael Watier wrote: > Hi Everybody, > > I just have to generate a simple PDF document with texts and images. OK, if it's a simple PDF document, you can work with Chunk, Paragraph, Image,... Create these objects and use Document.add. http://itextdocs.lowagie.com/tutorial/objects/index.html > Co