How to create my specific glyph to use in ma game in java2D?
hi would like to generate the string in my style just using the standard java
how to create my own font?
Graphics2D dbg ....
...
...
Font font = new Font("MyFontWithmySpeficiGlyph", Font.PLAIN, 20); //how to return my font with my glyph
dbg.setFont(font);
String myString = "string that use my glyph "
dbg.drawString(myString , x, y);