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.
      * @param num       The unicode number.
      * @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
[email protected]
https://lists.sourceforge.net/lists/listinfo/itext-questions

Reply via email to