Guest User

Fontconfig

a guest
Feb 14th, 2014
505
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.94 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
  3. <fontconfig>
  4.     <dir>~/my-fonts-sandbox/ttfonts</dir>
  5.     <match target="font">
  6.         <edit mode="assign" name="antialias">
  7.             <bool>true</bool>
  8.         </edit>
  9.     </match>
  10.     <match target="font">
  11.         <edit mode="assign" name="hinting">
  12.             <bool>true</bool>
  13.         </edit>
  14.     </match>
  15.     <match target="font">
  16.         <edit mode="assign" name="autohint">
  17.             <bool>true</bool>
  18.         </edit>
  19.     </match>
  20.     <match target="font">
  21.         <edit mode="assign" name="hintstyle">
  22.             <const>hintfull</const>
  23.         </edit>
  24.     </match>
  25.     <match target="font">
  26.         <edit mode="assign" name="rgba">
  27.             <const>rgb</const>
  28.         </edit>
  29.     </match>
  30.     <match target="font">
  31.         <edit mode="assign" name="lcdfilter">
  32.             <const>lcdlegacy</const>
  33.         </edit>
  34.     </match>
  35.   </fontconfig>
Advertisement
Add Comment
Please, Sign In to add comment