|
|

楼主 |
发表于 2006-8-18 00:15:25
|
显示全部楼层
Post by hihihihi
我前天裝了一個vista,把所有字體都copy了出來,繁體的字體很模糊,微軟正黑體,而且好像內建點陣也很少....
雅黑和繁体的正黑都是不带点阵的,全是矢量字体。
正黑体,我觉得效果比雅黑好,抓张图你看看。
我是这么干的:
ubuntu 论坛里的 sub-pixel 子像素补丁:
http://ubuntuforums.org/showthread.php?t=180647
包里提供的 local.conf 不用理它,因为我们用的是 MS truetype 字体,是一定要开 hinting 的。
用官方的包,中文感觉比较模糊。
fontconfig 里加上类似这么几句:
- <match target="font" >
- <test qual="any" name="family" compare="eq" >
- <string>Segoe UI</string>
- <string>Microsoft YaHei</string>
- <string>微软雅黑</string>
- <string>Microsoft JhengHei</string>
- <string>微軟正黑體</string>
- </test>
- <edit name="rgba" mode="assign">
- <const>[color=red]rgb[/color]</const>
- </edit>
- <edit name="antialias" mode="assign" >
- <bool>true</bool>
- </edit>
- <edit name="autohint" mode="assign" >
- <bool>false</bool>
- </edit>
- <edit name="hinting" mode="assign" >
- <bool>true</bool>
- </edit>
- <edit name="hintstyle" mode="assign" >
- <const>hintfull</const>
- </edit>
- </match>
复制代码
别忘了在 alias prefer 里把字体重新排一下队。
刚才找了个安装 xgl 的简便方法:
http://www.tectonic.co.za/view.php?id=916
可惜显卡太破,没法正常使用。 |
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有帐号?注册
x
|