How to get number of glyphs in a font ?
Hi,
How to get number of glyphs in a font ?
numGlyphs variable is not accsesible in GeneratedFont (linked with application) neither in BinaryFont (installed from .bin). Or is it ?
// from GeneratedFont.hpp
namespace touchgfx
{
class GeneratedFont : public ConstFont
{
public:
GeneratedFont(const GlyphNode* glyphs, uint16_t numGlyphs, uint16_t height, ... );
...
}
class BinaryFont : public GeneratedFont
{
}
Thanks, Ferro