[type1] Correctly handle missing MM axis names (#46202).

* src/type1/t1load.c (T1_Get_MM_Var): Implement it.
2.6.5
Werner Lemberg 9 years ago
parent 58b61b6e05
commit 8539915d18
  1. 6
      ChangeLog
  2. 3
      src/type1/t1load.c

@ -1,3 +1,9 @@
2015-10-13 Werner Lemberg <wl@gnu.org>
[type1] Correctly handle missing MM axis names (#46202).
* src/type1/t1load.c (T1_Get_MM_Var): Implement it.
2015-10-13 Werner Lemberg <wl@gnu.org>
[pcf] Quickly exit if font index < 0.

@ -336,6 +336,9 @@
mmvar->axis[i].strid = ~0U; /* Does not apply */
mmvar->axis[i].tag = ~0U; /* Does not apply */
if ( !mmvar->axis[i].name )
continue;
if ( ft_strcmp( mmvar->axis[i].name, "Weight" ) == 0 )
mmvar->axis[i].tag = FT_MAKE_TAG( 'w', 'g', 'h', 't' );
else if ( ft_strcmp( mmvar->axis[i].name, "Width" ) == 0 )

Loading…
Cancel
Save