How to create a glyph bitmap for an alphabet

I am looking for a way that allows me to create a glyph bitmap for an alphabet. For example, I create the following for the letter "0", but I wonder if there is an easier way to create a glyph bitmap for the alphabet "az" and "AZ"?

        { 1, 1, 1, 1 },
        { 1, 0, 0, 1 },
        { 1, 0, 0, 1 },
        { 1, 0, 0, 1 },
        { 1, 0, 0, 1 },
        { 1, 0, 0, 1 },
        { 1, 1, 1, 1 },

Thank.

+1
source share
1 answer

java.awt.font.GlyphVectoris a good alternative as shown here .

Application: After the glyph outline has been mapped to BufferedImage, the corresponding one WritableRasterbecomes available.

+2
source

All Articles