|
|
发表于 2005-1-27 17:01:04
|
显示全部楼层
修改/etc/fonts/local.conf,替换成以下内容,注销或重启一遍.
- <?xml version="1.0"?>
- <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
- <fontconfig>
- <match target="font" >
- <edit mode="assign" name="hinting" >
- <bool>true</bool>
- </edit>
- </match>
- <match target="font" >
- <edit mode="assign" name="hintstyle" >
- <const>hintmedium</const>
- </edit>
- </match>
- <dir>~/.fonts</dir>
- <match target="font" >
- <test compare="more" name="size" qual="any" >
- <double>8</double>
- </test>
- <test compare="less" name="size" qual="any" >
- <double>12</double>
- </test>
- <edit mode="assign" name="antialias" >
- <bool>false</bool>
- </edit>
- </match>
- <match target="font" >
- <test compare="more" name="pixelsize" qual="any" >
- <double>11</double>
- </test>
- <test compare="less" name="pixelsize" qual="any" >
- <double>17</double>
- </test>
- <edit mode="assign" name="antialias" >
- <bool>false</bool>
- </edit>
- </match>
- </fontconfig>
复制代码 |
|