Please do not reply directly to this email. All additional comments should be made in the comments box of this bug.
https://bugzilla.redhat.com/show_bug.cgi?id=547532
James Cloos cloos@jhcloos.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |cloos@jhcloos.com
--- Comment #12 from James Cloos cloos@jhcloos.com 2009-12-21 18:18:10 EDT --- Suitable fontconfig scripts can help here.
I use these two scripts to force the autofitter for non-glyf fonts (there is an open rfe for freetype to replace the type1/cff hinting module with one which uses the autofit module, but taking advantage of the type1/cff hints; this would be an excellent project for anyone who wants to delve into font rasterization techniques) and to set the filtering to match the chosen hinting option.
Combined with fc code akin to:
<!-- cut here --> <match target="font"> <test name="family"> <string>VL Gothic</string> </test> <edit name="autohint" mode="assign"> <bool>true</bool> </edit> </match> <!-- and here -->
one can force the autofitter for some glyf fonts and use the bci for others.