|
|

楼主 |
发表于 2004-11-7 18:09:42
|
显示全部楼层
最初由 yisha 发表
不能传到linuxsir么?我用了你的前一个simsun-test2,效果不错。:thank
已经做了 SimSun-test-0.2.1.ttf 了。还在老地方下载。主要修改了小写字母“c”的显示效果,还有一些标点符号的效果。
现在正在上传那个砍掉了英文字体的 SimSun,速度太慢了,只有1K。
至于 local.conf,我先贴出一现在的配置,但是 GNOME 中似乎还有问题。放在 /etc/fonts/local.conf 就可以用了。
- <?xml version="1.0"?>
- <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
- <!-- /etc/fonts/local.conf file for local customizations -->
- <fontconfig>
- <!--
- Enable sub-pixel rendering
- <match target="font">
- <test qual="all" name="rgba">
- <const>unknown</const>
- </test>
- <edit name="rgba" mode="assign"><const>rgb</const></edit>
- </match>
- -->
- <!--
- Added by Shiyu Tang <shiyutang@yahoo.com.cn>. If we use the font SimSun, antialias shouldn't work. Because it contains bitmap font.
- -->
- <match target="font">
- <test qual="any" name="pixelsize" compare="more">
- <double>12</double>
- </test>
- <test qual="any" name="pixelsize" compare="less">
- <double>17</double>
- </test>
- <test qual="any" name="family" compare="eq">
- <string>SimSun</string>
- </test>
- <edit name="antialias" mode="assign">
- <bool>false</bool>
- </edit>
- </match>
- </fontconfig>
复制代码 |
|