Op 21/05/2011 14:30, Saravana Kumar Ganesan schreef:
> Can you help me to display baht character?
Why do you think Courier Italic would have the character?
Moreover, you are using the wrong encoding,
and as you can read in the documentation, the value "true"
is ignored for the "embedded" parameter when using one
of the 14 standard Type 1 fonts!

Please don't start asking questions BEFORE you've read
the documentation: http://itextpdf.com/book/

You should use a font from a file, for instance arialuni.ttf:
BaseFont bf = BaseFont.createFont(
   "c:/windows/fonts/arialuni.ttf", BaseFont.IDENTITY_H, BaseFont.EMBEDDED);
Use the method bf.charExists('\u0E3F'); to find if the font
knows how to display the character.

If it returns false, then the character isn't present.
If it returns true, then the character is there and can be displayed.

Also: upgrade to the latest iText version.

------------------------------------------------------------------------------
What Every C/C++ and Fortran developer Should Know!
Read this article and learn how Intel has extended the reach of its 
next-generation tools to help Windows* and Linux* C/C++ and Fortran 
developers boost performance applications - including clusters. 
http://p.sf.net/sfu/intel-dev2devmay
_______________________________________________
iText-questions mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/itext-questions

iText(R) is a registered trademark of 1T3XT BVBA.
Many questions posted to this list can (and will) be answered with a reference 
to the iText book: http://www.itextpdf.com/book/
Please check the keywords list before you ask for examples: 
http://itextpdf.com/themes/keywords.php

Reply via email to