/* Returns true if the font prefers to be indexed by name. Currently returns true for Type 1 fonts, which is suboptimal in the presence of OpenType/CFF fonts converted from Type 1. But what else can be done? */ int FT_Face_Prefers_Names(FT_Face face); /* Returns a human-readable name for the font technology used by the font. The name should be suitable for use as an X11 FONT_TYPE property. */ char *FT_Face_Font_Type(FT_Face face); typedef enum { ft_type1_info = 0, type1_max } FT_Type1_Tag; /* Returns a table from a Type 1 font, NULL otherwise. */ void *FT_Get_Type1_Table(FT_Face face, FT_Type1_Tag tag);