|
发表于 2010-1-12 22:12:48
|
显示全部楼层
你的情况推荐使用下面这个来代替prefer。prefer似乎会根据语言选择。
- <fontconfig>
- <match target="pattern">
- <test qual="any" name="family">
- <string>serif</string>
- </test>
- <edit name="family" mode="prepend" binding="strong">
- <string>Luxi Serif</string>
- <string>AR PL UMing CN</string>
- <string>AR PL ShanHeiSun Uni</string>
- <string>AR PL UKai CN</string>
- <string>AR PL ZenKai Uni</string>
- </edit>
- </match>
- <match target="pattern">
- <test qual="any" name="family">
- <string>sans-serif</string>
- </test>
- <edit name="family" mode="prepend" binding="strong">
- <string>Luxi Sans</string>
- <string>WenQuanYi Zen Hei</string>
- <string>AR PL UKai CN</string>
- <string>AR PL ZenKai Uni</string>
- <string>AR PL UMing CN</string>
- <string>AR PL ShanHeiSun Uni</string>
- </edit>
- </match>
- <match target="pattern">
- <test qual="any" name="family">
- <string>monospace</string>
- </test>
- <edit name="family" mode="prepend" binding="strong">
- <string>Dejavu Sans Mono</string>
- <string>WenQuanYi Zen Hei Mono</string>
- <string>AR PL UKai CN</string>
- <string>AR PL ZenKai Uni</string>
- <string>AR PL UMing CN</string>
- <string>AR PL ShanHeiSun Uni</string>
- </edit>
- </match>
- <match target="scan">
- <test name="file" compare="contains">
- <string>WenQuanYi Zen Hei Bold</string>
- </test>
- <edit name="style" mode="assign">
- <string>Bold</string>
- </edit>
- <edit name="weight" mode="assign">
- <const>bold</const>
- </edit>
- </match>
- <match target="font">
- <edit mode="assign" name="rgba">
- <const>bgr</const>
- </edit>
- </match>
- <match target="font">
- <edit mode="assign" name="hinting">
- <bool>true</bool>
- </edit>
- </match>
- <match target="font">
- <edit mode="assign" name="hintstyle">
- <const>hintslight</const>
- </edit>
- </match>
- <match target="font">
- <edit mode="assign" name="antialias">
- <bool>true</bool>
- </edit>
- </match>
- </fontconfig>
复制代码
后面是AA设置,不喜欢可以去掉。 |
|