How to draw all glyphs from .ttf ?
-
There is a way to draw all glyphs from a .ttf in a textBox? Including all OpenType glyphs (like .ss01, .tf, .sc ...)
With listFontGlyphNames(), if I put the list in a textBox I get all names, but not drawings.
-
use:
glyphNames = ["a", "aring", "agrave"] txt = FormattedString() txt.appendGlyph(*glyphNames) textBox(txt, (10, 10, 400, 400))
-
This post is deleted!