Re: [iText-questions] Acroforms SaveAs menu action

2009-12-12 Thread 1T3XT info
Pavol Behul wrote: > And is some possibility in itext how to make document Reader enabled ? Of course not! You can Reader enable documents using Adobe software, because reader enabling is done using public/private key cryptography. Reader contains the public key, Adobe owns the private key. -- Th

Re: [iText-questions] Acroforms SaveAs menu action

2009-12-12 Thread Pavol Behul
> That will only work in Acrobat (for obvious reasons). > If you want it to work in Adobe Reader, your document > needs to be Reader enabled. And is some possibility in itext how to make document Reader enabled ? I try from example using code (input_pdf is pdf with acroforms), no succes: PdfReade

Re: [iText-questions] Acroforms SaveAs menu action

2009-12-11 Thread 1T3XT info
Pavol Behul wrote: > On 12/10/2009 07:21 PM, Pavol Behul wrote: >> Hello, >> >> by editing pdf via adobe acrobat pro extended i make button with >> SaveAs Menu action. >> It creates object: >> >> >> It is some possibility to make this menu actions by itext ? >> >> Regards, >> Pavol. > > Thanks fo

Re: [iText-questions] Acroforms SaveAs menu action

2009-12-11 Thread Pavol Behul
On 12/10/2009 07:21 PM, Pavol Behul wrote: Hello, by editing pdf via adobe acrobat pro extended i make button with SaveAs Menu action. It creates object: It is some possibility to make this menu actions by itext ? Regards, Pavol. Thanks for reply, it helps for SaveAs, in next step i have

Re: [iText-questions] Acroforms SaveAs menu action

2009-12-10 Thread 1T3XT info
Pavol Behul wrote: > Hello, > > by editing pdf via adobe acrobat pro extended i make button with SaveAs > Menu action. > It creates object: > > 165 0 obj<< /N /SaveAs /S /Named>> > endobj > > It is some possibility to make this menu actions by itex

[iText-questions] Acroforms SaveAs menu action

2009-12-10 Thread Pavol Behul
Hello, by editing pdf via adobe acrobat pro extended i make button with SaveAs Menu action. It creates object: 165 0 obj<< /N /SaveAs /S /Named>> endobj It is some possibility to make this menu actions by itext ? Regards, Pavol.

Re: [iText-questions] AcroForms, & ImageMagick

2009-08-24 Thread Mark Storer
> I know JavaScript isn't related to this forum, I was just > giving you a bit > more detail on what my overall goal is. Now I already use > ImageMagick to > render images from the PDF, I set it to 72 DPI so that points=pixels. > Although now that I think about it, since an image can be > resi

Re: [iText-questions] AcroForms, & ImageMagick

2009-08-22 Thread Jacob-
I'm actually using the code from the iText in Action book: AcroFields form = reader.getAcroFields(); HashMap fields = form.getFields(); System.out.println( "Empty: " + fields.isEmpty() ); String key; for ( Iterator i = fields.keySet().iterator(); i.hasNe

Re: [iText-questions] AcroForms, & ImageMagick

2009-08-22 Thread Jacob-
This is the code I'm working with right now: // Image width (in pixels) (image saved at 72 DPI) int image_width = 500; String key; for ( Iterator i = fields.keySet().iterator(); i.hasNext(); ) { key = (String) i.next(); System.out.println(

Re: [iText-questions] AcroForms, & ImageMagick

2009-08-22 Thread 1T3XT info
Jacob- wrote: > I have a library of user submitted PDF's which can contain an infinite > amount of pages & AcroFields. I'm using iText to grab the positions of > these AcroFields. More or less like what is done here: http://1t3xt.be/?X4a The positions of one field in file register_form2.pdf

[iText-questions] AcroForms, & ImageMagick

2009-08-22 Thread Jacob-
First of all I want to say that iText is amazing. When I first started playing around with PDF's in web applications I was using a PHP class. When I went to switch to Java to handle the PDF creation process I was worried I wouldn't be able to find a library like the PHP one I used. Well I was l

Re: [iText-questions] AcroForms

2007-05-17 Thread William Alexander Segraves
- Original Message - From: "Paulo Soares" <[EMAIL PROTECTED]> To: "Post all your questions about iText here" Sent: Thursday, 17 May, 2007 3:51 PM Subject: Re: [iText-questions] AcroForms > http://itext.ugent.be/library/question.php?id=43 > > Paulo >

Re: [iText-questions] AcroForms

2007-05-17 Thread Paulo Soares
http://itext.ugent.be/library/question.php?id=43 Paulo - Original Message - From: "Joe L" <[EMAIL PROTECTED]> To: Sent: Thursday, May 17, 2007 9:25 PM Subject: [iText-questions] AcroForms > Is there a way to set a form as savable through the API? I can't fi

[iText-questions] AcroForms

2007-05-17 Thread Joe L
Is there a way to set a form as savable through the API? I can't figure out how to do it through designer 7. After I create a form it says that the data in it can't be saved. I want to have people save data in forms and be able to email the form to me with the data in it. Thanks, Joe

RE: [iText-questions] AcroForms Question

2006-05-26 Thread Paulo Soares
Use ct.addElement(). Paulo > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Abhishek Srivastava > Sent: Friday, May 26, 2006 10:30 AM > To: itext-questions@lists.sourceforge.net > Subject: RE: [iText-questions] AcroForm

RE: [iText-questions] AcroForms Question

2006-05-26 Thread Abhishek Srivastava
justified text? Regards, Abhishek. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bruno Lowagie Sent: Friday, May 26, 2006 1:50 PM To: itext-questions@lists.sourceforge.net Subject: Re: [iText-questions] AcroForms Question Abhishek Srivastava wrote

Re: [iText-questions] AcroForms Question

2006-05-26 Thread Bruno Lowagie
Abhishek Srivastava wrote: Great. I was able to use Column Text and was able to get the justification. The text which I am trying to render looks like attached image. It's a bulleted list and the text of the bulleted listitem is align_justified. How can I put these ColumnText objects into a li

RE: [iText-questions] AcroForms Question

2006-05-25 Thread Leonard Rosenthol
At 10:32 AM 5/25/2006, Abhishek Srivastava wrote: Is there any way other way to write justified paragraph into PDF? Sure - use the form field as a placement rectangle and then iText draw in that space. Leonard

RE: [iText-questions] AcroForms Question

2006-05-25 Thread Abhishek Srivastava
Subject: Re: [iText-questions] AcroForms Question At 09:38 AM 5/25/2006, Abhishek Srivastava wrote: >1) In a AcroForm Text field is it possible to "Justify" the >text? I want the text of a multiline text field to be in the same >vertical line on both the left and the right s

Re: [iText-questions] AcroForms Question

2006-05-25 Thread Leonard Rosenthol
At 09:38 AM 5/25/2006, Abhishek Srivastava wrote: 1) In a AcroForm Text field is it possible to "Justify" the text? I want the text of a multiline text field to be in the same vertical line on both the left and the right side of the text box. No. 2) Suppose a text field app

[iText-questions] AcroForms Question

2006-05-25 Thread Abhishek Srivastava
Title: AcroForms Question I have two questions related to AcroForms. 1)  In a AcroForm Text field is it possible to “Justify” the text? I want the text of a multiline text field to be in the same vertical line on both the left and the right side of the text box. 2)  Suppose a text f

[iText-questions] acroforms - saving local

2006-05-12 Thread Glen Self
kudos on a great project and I eagerly await your book! I must be having a brain burn I can't figure out how to do someething simple. I need to generate a pdf progromatically that contains fielded data, email the pdf to a company where it is filled out and emailed back. It appears that itext shou

RE: [iText-questions] Acroforms and International Characters

2006-01-10 Thread Paulo Soares
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Sloan, Noah M > Sent: Monday, January 09, 2006 10:39 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] Acroforms and International Characters >

[iText-questions] Acroforms and International Characters

2006-01-09 Thread Sloan, Noah M
I am aware that iText cannot produce Acroforms that work with Unicode fonts. I was wondering what international fonts (if any) are known to work with iText and Acroforms. --- This SF.net email is sponsored by: Splunk Inc. Do you grep through l

Re: [iText-questions] AcroForms & Unicode Fonts - Problem inputing text

2005-12-05 Thread Paulo Soares
- Original Message - From: "Sloan, Noah M" <[EMAIL PROTECTED]> To: Sent: Monday, December 05, 2005 9:00 PM Subject: [iText-questions] AcroForms & Unicode Fonts - Problem inputing text Do AcroForms support Unicode fonts

[iText-questions] AcroForms & Unicode Fonts - Problem inputing text

2005-12-05 Thread Sloan, Noah M
I am using UJAC(Which in turn uses iText) to produce a PDF containing AcroForms. Everything works just fine for normal fonts. It makes use of Cyberbit.ttf which is a Unicode font with most of the Asian & Arabic character sets. Anyhow, the PDF produced by UJAC looks fine at first, the text fie

Re: [iText-questions] AcroForms

2005-09-10 Thread Bruno Lowagie
[EMAIL PROTECTED] wrote: Could someone send me an example of creating Editable PDF (AcroForms)? Not documented, but there are some links to examples: http://itextdocs.lowagie.com/tutorial/forms/ http://itextdocs.lowagie.com/tutorial/forms/fill/ http://itextdocs.lowagie.com/tutorial/forms/creat

[iText-questions] AcroForms

2005-09-10 Thread zhlu
Could someone send me an example of creating Editable PDF (AcroForms)? -Henry --- SF.Net email is Sponsored by the Better Software Conference & EXPO September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices Agile & Plan-Drive

RE: [iText-questions] AcroForms setting field type

2005-09-02 Thread Paulo Soares
AM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] AcroForms setting field type > > > I have a problem using AcroForms. My source code is > > PdfStamper stamp = new PdfStamper(reader, fos); > AcroFields form = stamp.getAcroFields(); >

[iText-questions] AcroForms setting field type

2005-09-01 Thread pmendoza
I have a problem using AcroForms.  My source code is PdfStamper stamp = new PdfStamper(reader, fos); AcroFields form = stamp.getAcroFields();                         Map mfields = form.getFields(); Set setFields = mfields.keySet(); Iterator iFields = setFields.iterator();                      

[iText-questions] AcroForms

2002-04-18 Thread Bruno Lowagie
Quoting Jason Essington <[EMAIL PROTECTED]>: > Just a thought, but if you send a pdf file via get, wouldn't the whole > file(binary file mind you) need to be urlencoded and sent like get form > data? Remark: the discussion is about AcroForms. You don't want to send the complete PDF file, just