GlyphList
- From: "M. Niedermair" <m_g_n (at) gmx.de>
- Date: Tue, 22 Aug 2006 15:44:19 +0200
Hi Bruno,
the class GlyphList comprised the glyphs from the adobe glyphlist, or?
http://partners.adobe.com/public/developer/en/opentype/glyphlist.txt
Some fonts have a other glyph name schema, which it make necessary to
extends the glpyhlist.
It is possible, to add a method like this?
[GlpyhList.java]
/**
* Put a entry in the glyphlist.
* (at) param num The unicode number.
* (at) param glyphname The glyph name.
*/
public static void put(final int num, final String glyphname) {
if (glyphname != null) {
names2unicode.put(glyphname, new int[]{num});
unicode2names.put(num, glyphname);
}
}
By
Michael
-------------------------------------------------------------------------
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.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
iText-questions mailing list
iText-questions (at) lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions
- Follow-Ups:
- GlyphList
- From: bruno <bruno (at) lowagie.com>