[iText-questions] Display multiple languages using itext in java

2008-09-24 Thread dilttha
Hi All, When I am trying to use the following code , not able to display the Thai characters in PDF. Can you plese send me the code to display Thai characters in PDF using itext. BaseFont helvetica = BaseFont.createFont(D:\\Fonts\\arialuni.ttf, BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED); Font

Re: [iText-questions] Display multiple languages using itext in java

2008-09-24 Thread Thimo Seitz
Hi. Try to embedd your font. Maybe your pdfrenderer is missing it. Use BaseFont.EMBEDDED instead of BaseFont.NOT_EMBEDDED. Best Regards Thimo Seitz Dipl.-Inf. (FH) Thimo Seitz Geschäftsführer Entwicklung Flyer-Ex Software GmbH Am Weichselgarten 7

Re: [iText-questions] Outlines

2008-09-24 Thread Antonio Q
Yes, I was talking about bookmarks. Thanks for your answer, now I've done it and it works very well. Best regards... - Original Message - From: Mark Storer [EMAIL PROTECTED] To: itext-questions@lists.sourceforge.net Sent: Friday, August 01, 2008 7:08 PM Subject: Re: [iText-questions]

Re: [iText-questions] Field Postions of a Radio Button Group

2008-09-24 Thread LinaTomy
Hey Hua In a radio button group you can distinguish the buttons by giving them different values. As far as the position is concerned I've found that the fields are retrieved in the order in which they appear on the document. Hope this helps!!! Zhi Ren wrote: Hi Lina, Have you

Re: [iText-questions] (no subject)

2008-09-24 Thread kmackay
I need to generate a PDF document that includes simple text, as well as parsing a number of html documents that should be displayed in various parts of the pdf document. If i use HTMLParser to parse a html document in the middle of creating the pdf, the document instance gets closed and no

Re: [iText-questions] Luna SA Integration with iText

2008-09-24 Thread Paulo Soares
iText supports external signatures, they can come from Luna SA too. Paulo From: [EMAIL PROTECTED] [EMAIL PROTECTED] Sent: Wednesday, September 24, 2008 9:16 AM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] Luna SA Integration with

Re: [iText-questions] (no subject)

2008-09-24 Thread Paulo Soares
HTMLWorker.parseToList(). Paulo From: [EMAIL PROTECTED] [EMAIL PROTECTED] Sent: Wednesday, September 24, 2008 12:53 PM To: itext-questions@lists.sourceforge.net Subject: Re: [iText-questions] (no subject) I need to generate a PDF document that includes

Re: [iText-questions] Display multiple languages using itext in java

2008-09-24 Thread Paulo Soares
The code is correct (Identity-H is always embedded) but you must check if your source code has a compatibe encoding with the Java compiler. Note that iText doesn't do the shapping of Indic languages, as it does with Arabic. Paulo From: dilttha [EMAIL

Re: [iText-questions] iText on Windowa Vista

2008-09-24 Thread Paulo Soares
iText works with Windows Vista. What precisely means doesn't work? Paulo From: R.Anitha [EMAIL PROTECTED] Sent: Wednesday, September 24, 2008 5:25 AM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] iText on Windowa Vista Hi, Using iText

Re: [iText-questions] iText on Windowa Vista

2008-09-24 Thread Iliadis Yannis
Your claim that iText doesn't work on Windows Vista is little vague. Be more specific about what is *not* working. 2008/9/24 R. Anitha [EMAIL PROTECTED] Hi, Using iText have rendered our java report content into a PDF file and it was working fine till now on windows 2003 server.(don't

[iText-questions] Margin Helped (Pdf Layout)

2008-09-24 Thread Secil Oezdemir
Dear Bruno, I have currently problems with my PDF layout and hope that you can help me. My problems are: I have a top margin (Example: A4 MarginTop = 72) and i want the first line of all pages starts with this margin which is independent with their Spacing after/before setting. Currently my

Re: [iText-questions] Margin Helped (Pdf Layout)

2008-09-24 Thread Paulo Soares
That's the normal behavior. Prepare a small example showing the problem. Paulo From: Secil Oezdemir [EMAIL PROTECTED] Sent: Wednesday, September 24, 2008 10:52 AM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] Margin Helped (Pdf

Re: [iText-questions] Luna SA Integration with iText

2008-09-24 Thread Massimiliano Ziccardi
You can use the same code I sent here some time ago (I sign with Chrysalis Luna SA HSM). You just have to instantiate the LunaSA keystore and get the private key, with something like this: LunaTokenManager luna = LunaTokenManager.getInstance(); luna.Login(SLOTNAME, SLOTPWD);

Re: [iText-questions] iText-questions Digest, Vol 28, Issue 73

2008-09-24 Thread R . Anitha
Hi Paul, Thanks for your input. I'll investigate on this tommorow by installing our application on a new System with Windows Vista OS and test it and let you know. This issue is raised at our customer end,i will test ,investiagte and get back to u tommorow. Just needed a confirmation from

Re: [iText-questions] Dynamic table issue

2008-09-24 Thread Paul Gatewood
This sounds similar to a situation we have. I suspect there is a more flexible general solution, using more sophisticated iText functionality, but in our scenario (the one I inherited), the templates were already created and I had to work with them, so I used a rather simple approach. One one

[iText-questions] MPL and LGPL

2008-09-24 Thread andre gomes
Could you, please, tell me which version of LGPL applies as license? Thank you! Andre - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK

[iText-questions] Using an existing PDF adding words and sections

2008-09-24 Thread Bjorn Hakansson
Hi, I have a pdf file that was generated from a word document. This pdf file has fields in it and replacing those are quite easy, just looping through the AcroFileds and using the setField() method. So far so good. My problem is that the pdf file also can have rather big sections from a

[iText-questions] Updated PDF is not shown

2008-09-24 Thread Diptiman Prusty
Hi I am reading a PDF form template and then creating a pdfstamper to fill up some fields and save it to a new file. Then I want to read the updated file and send it to browser. The updated file is created and when opened in acrobat reader shows filled up values. But if I pass the same file

Re: [iText-questions] MPL and LGPL

2008-09-24 Thread Paulo Soares
2 or later, you choose. Paulo -Original Message- From: andre gomes [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 24, 2008 1:34 PM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] MPL and LGPL Could you, please, tell me which version of LGPL applies as

Re: [iText-questions] Using an existing PDF adding words and sections

2008-09-24 Thread Paulo Soares
-Original Message- From: Bjorn Hakansson [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 24, 2008 3:39 PM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] Using an existing PDF adding words and sections Hi, I have a pdf file that was generated from a

[iText-questions] RTF: How to set default cell font

2008-09-24 Thread Stewart Meyers
I am using RtfWriter (not RtfWriter2; I know RtfWriter has been deprecated, but I still need to use it for now) on iTextSharp v4.0.8. The problem is twofold: Once a font is set for a Phrase that is placed inside of a Table Cell, it gets applied to subsequent cells unless the font in those