Folks,

just a heads-up which might influence applications: I've just fixed a
bug in the TrueType handler to correctly compute the `height' value of
the `FT_Face' structure.  Up to now, the following was done:

  ascender_int = round(ascender_26.6);
  descender_int = round(descender_26.6);
  height_int = round(height_26.6);

This has been replaced with

  ascender_int = round(ascender_26.6);
  descender_int = round(descender_26.6);
  height_int = ascender_int - descender_int;

to be in sync with Windows.

I wonder whether we should do the same for non-TrueType fonts.  I think
yes, but please comment!


    Werner

_______________________________________________
Freetype-devel mailing list
[email protected]
https://lists.nongnu.org/mailman/listinfo/freetype-devel

Reply via email to