Re: [iText-questions] Set font

2009-07-10 Thread Bruno Lowagie
dakhla.0...@hotmail.com wrote: Hi folks, I have another problem. Googling I have found an explaination about it but no solution. It is as follow, Alignment in AcroForm fields is called Quadding, defined as: A code specifying the form of quadding (justification) to be used in

Re: [iText-questions] Set font

2009-07-10 Thread dakhla.0563
Thanks Bruno, My app works ok. Thanks a lot, Jose Alvarez de Lara -- From: Bruno Lowagie br...@lowagie.com Sent: Friday, July 10, 2009 9:11 AM To: Post all your questions about iText here itext-questions@lists.sourceforge.net Subject: Re:

[iText-questions] Itext dynamic fields

2009-07-10 Thread savi
Hi, I have a pdf template which has a form with fields for user personal info, beneficiary info etc. The template will have place holders for 1 beneficiary information only. But If I get a data of 5 beneficiaries, i have to use the template and add fields for other 4 beneficiaries and finally

[iText-questions] iText and Khmer Language

2009-07-10 Thread saeid
Dear All, I am currently working on PDF file generation in Khmer (Cambodian local language) using java. I am trying to use jasper (iText) java library for PDF file generation. However it seems that iText is not able to combine Khmer characters correctly. I would be grateful if anyone with

Re: [iText-questions] iText and Khmer Language

2009-07-10 Thread Paulo Soares
iText doesn't support Indic languages. Paulo -Original Message- From: sa...@asycuda.org [mailto:sa...@asycuda.org] Sent: Friday, July 10, 2009 10:48 AM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] iText and Khmer Language Dear All, I am currently

Re: [iText-questions] Itext dynamic fields

2009-07-10 Thread Bruno Lowagie
savi wrote: Hi, I have a pdf template which has a form with fields for user personal info, beneficiary info etc. Are you talking about XFA or AcroForm technology? The template will have place holders for 1 beneficiary information only. But If I get a data of 5 beneficiaries, i have to use

Re: [iText-questions] Issue faced while PDFStamping on a XFA Form (having javascript) .

2009-07-10 Thread Harshit Bapna
Hi All, I followed Leonard's suggestion of using addToolButton js sample in SDK. I am able to create a iconStreamObject using the Acrobat Sample in the SDK and add it to the toolBar button and my custom button. The image on the toolBarButton is showing up but not on the custom button. Note: I

Re: [iText-questions] Textfield Style to Paragraph Style

2009-07-10 Thread Thomas Chille
Hi, am i totally wrong with my approach? any hint would help. thanks in advance thomas 2009/7/9 Thomas Chille tho...@chille.de: Hi, i am trying to determine the style of an existing multiline textfield to use it on a newly created paragraph. I do this because i have to use line leading

Re: [iText-questions] Textfield Style to Paragraph Style

2009-07-10 Thread Bruno Lowagie
Thomas Chille wrote: Hi, am i totally wrong with my approach? You say you have to use a line leading, but you're not setting the leading anywhere. OK, you use 0 in the setSimpleColumn method, but that's the leading for text mode. As you're adding the paragraph with addElement, you're in

Re: [iText-questions] Textfield Style to Paragraph Style

2009-07-10 Thread Thomas Chille
Bruno, thanks for your reply! At first i try to achieve that the paragraph text in a column starts at the same absolute position like the text in a textfield which is positioned at this absolute position too. That's my problem for now. The missing line leading in textfields is just the reason

Re: [iText-questions] Itext dynamic fields

2009-07-10 Thread savi
As in IRS-1040 form, i will be given a pdf with place holders. I need to fill out the pdf with the value i have. The no.of values can be more than the place holders in the pdf. If the number of values are more, i have to create new fields and put in the value? any idea how i can do this? Bruno

[iText-questions] RTF Question with Images

2009-07-10 Thread Howard Block
I need to place an smaller image on top of an larger image so that the user will be able to move the smaller image around. The larger image is a gauge and the smaller image is the needle that can be moved. How can I do this with iText in an RTF? In Word I would the picture layout format to

Re: [iText-questions] RTF Question with Images

2009-07-10 Thread Howard Shank
I don't think it is possible with the basic image handling in iText RTF. I think you would need to create Direct Content in order to do this. I have not done anything like this before. Howard Shank From: Howard Block hbl...@nuwavesolutions.com To:

[iText-questions] HeaderFooter question

2009-07-10 Thread Mark Davidson
Ok, so I read through the documentation looking for the answer, I couldn't find it there. Hopefully this won't get a [newbie] tag! Note: I'm using iText-2.1.7.jar Anyways, my problem is that the HeaderFooter class doesn't display footer information like I think it should. Basically, I'm trying

[iText-questions] Not able to make image appear on a PushButton.

2009-07-10 Thread Subhrajyoti Moitra
Hello, I am creating a pushbutton inside a PdfpCell and trying to put an image on it. The image is not appearing on the button. Please help!! Below is the code i am using and attached is the image I am trying to add as well as the a sample resultant PDF. iText version 2.1.4. Thanks, Subhro.

Re: [iText-questions] HeaderFooter question

2009-07-10 Thread mister bean
If you search through this mailing list for HeaderFooter, you'll find many posts similar to this one, posted two weeks ago: http://www.mail-archive.com/itext-questions@lists.sourceforge.net/msg45755.html That should point you in the right direction. ---mr. bean Mark Davidson-5 wrote: Ok,

Re: [iText-questions] Not able to make image appear on a PushButton.

2009-07-10 Thread Mark Storer
Subhrajyoti Moitra subhrajyotim at gmail.com writes: button.setImage(agreeToSignImg); You also need to set the button's layout to one of the ones with icon in it: button.setLayout( PushbuttonField.LAYOUT_ICON_ONLY ); --Mark

Re: [iText-questions] Not able to make image appear on a PushButton.

2009-07-10 Thread Harshit Bapna
Yes Mark's solution is correct. It worked for me when I added the Layout property. On Sat, Jul 11, 2009 at 12:35 AM, Mark Storer msto...@autonomy.com wrote: Subhrajyoti Moitra subhrajyotim at gmail.com writes: button.setImage(agreeToSignImg); You also need to set the button's layout to