On 2015.11.03 at 17:27 +0100, Werner LEMBERG wrote:
> >> ... on your fontconfig setup, which must be adjusted accordingly.
> > 
> > Can you tell me how?
> 
> Sorry, no.  Please ask on the fontconfig mailing list and post your
> results here!

Figured it out without asking ;)

<?xml version='1.0'?>
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
<fontconfig>
 <match target="font">
  <edit mode="assign" name="autohint">
   <bool>true</bool>
  </edit>
 </match>
 <match target="font">
  <edit mode="assign" name="lcdfilter">
   <const>lcdlight</const>
  </edit>
 </match>
 <dir>~/.fonts</dir>
 <match target="font">
  <edit mode="assign" name="rgba">
   <const>vrgb</const>
  </edit>
 </match>
 <match target="font">
  <edit mode="assign" name="hinting">
   <bool>true</bool>
  </edit>
 </match>
<match target="font">
  <test name="fontformat" compare="eq">
    <string>CFF</string>
  </test>
  <edit name="hintstyle" mode="assign">
    <const>hintnone</const>
  </edit>
</match>
<match target="font">
  <test name="fontformat" compare="eq">
    <string>TrueType</string>
  </test>
  <edit name="hintstyle" mode="assign">
    <const>hintslight</const>
  </edit>
</match>
 </match>
 <match target="font">
  <edit mode="assign" name="antialias">
   <bool>true</bool>
  </edit>
 </match>
</fontconfig>

-- 
Markus

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

Reply via email to