|
|
发表于 2008-5-12 12:20:38
|
显示全部楼层
在这个连接上详细讲了字体的配置
http://www.aiview.com/2008/01/ge ... _chinese_fonts.html
上面有提到的就是,对于stheiti,stxihei要关闭hint才可以有不错的效果,但是
如果你使用simsun,yahei之类的,就没必要关上了。我的就是全局打开,对于stheiti和stxihei另外配置
- <!-- autohint=true hinting=false hintstyle=hintnone for STHeiti and STXihei -->
- <match target="font">
- <test name="family">
- <string>STHeiti</string>
- <string>STXihei</string>
- </test>
- <edit name="autohint" mode="assign">
- <bool>false</bool>
- </edit>
- <edit name="hinting" mode="assign">
- <bool>false</bool>
- </edit>
- <edit name="hintstyle" mode="assign">
- <const>hintnone</const>
- </edit>
- </match>
- </fontconfig>
复制代码 |
|