- 函数接口
FT_Get_Kerning( FT_Face face,
FT_UInt left_glyph,
FT_UInt right_glyph,
FT_UInt kern_mode,
FT_Vector *akerning );
结果保存在akerning中。
- kern_mode
有三种:
FT_KERNING_DEFAULT = 0,
FT_KERNING_UNFITTED,
FT_KERNING_UNSCALED
- FT_Vector
包含x/y,都是26.6格式的定点数。