|
|
发表于 2006-9-20 16:26:15
|
显示全部楼层
把禁止AA的写到~/.fonts.conf里面就好了.- $ cat /etc/fonts/conf.d/20-zh-bmp.conf
- <?xml version="1.0"?>
- <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
- <!-- conf.d/sub-pixel.conf -->
- <fontconfig>
- <!--
- The Bitstream Vera fonts have GASP entries suggesting that hinting be
- disabled below 8 ppem, but FreeType ignores those, preferring to use
- the data found in the instructed hints. The initial Vera release
- didn't include the right instructions in the 'prep' table. Fix this
- by disabling hinting manually at smaller sizes (< 8ppem)
- -->
- <match target="font">
- <test name="family">
- <string>AR PL ShanHeiSun Uni</string>
- </test>
- <test name="pixelsize" compare="less_eq">
- <double>18</double>
- </test>
- <edit name="antialias" >
- <bool>false</bool>
- </edit>
- <edit name="autohint" >
- <bool>false</bool>
- </edit>
- </match>
- </fontconfig>
复制代码 这样就不可以.
把~/.fonts.conf删了就又可以了. |
|