I check if my TTF file has kerning information using FT_HAS_KERNING, and this returns true.

I then use:

 FT_Vector delta;
 FT_Get_Kerning( face, prev, next, FT_KERNING_DEFAULT, &delta );

to determine the kerning value, but both delta.x and delta.y have values of 0.

From the docs it seems that this means an error has occurred - how can I debug what the problem is even though FT_HAS_KERNING returns true?

All I want to do is fix the spacing between characters, as they currently appear strangely spaced.

link|improve this question

feedback

3 Answers

up vote 0 down vote accepted

I ended up downloading the TTX tool to look inside my TTF file and it turns out there was no kerning information in here for the pairs I desired.

link|improve this answer
feedback

with parameter FT_KERNING_DEFAULT it always returns 0. See http://www.freetype.org/freetype2/docs/reference/ft2-base_interface.html#FT_Kerning_Mode Use FT_KERNING_UNFITTED

link|improve this answer
feedback

Function FT_Get_Kerning with parameter FT_KERNING_DEFAULT does not always return 0!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.