linser 发表于 2005-10-22 01:42:56

Gnome下如何使用像Windows那样的字体大小?

在Windows下,系统字体可以把Tahoma设为8pt,而中文宋体依然保持使用9pt的点阵,但是GNome下则不行,偶在font.conf里加上了一段修改字体大小的代码:


<!-- 当 family=SimSun,并且pixelsize<12时,设置pixelsize=12,size=9 -->
<match target="font" qual="all">
      <test name="family">
                <string>SimSun</string>
      </test>
      <test name="pixelsize" compare="less">
                <double>12</double>
      </test>
      <edit name="pixelsize" mode="assign">
                <double>12</double>
      </edit>
      <edit name="size" mode="assign">
                <double>9</double>
      </edit>
</match>


但是,重启Gnome后发现只能在字体预览中达到偶要的效果(Tahoma8+SimSun9),应用程序关闭重启后,宋体就没有再使用点阵了,谁知道是什么问题?

linser 发表于 2005-10-30 16:15:48

顶一下,没人知道吗? :cry:

sunmoon1997 发表于 2005-10-30 17:35:19

1. 用 pixelsize. 不要用 size.
2. 如果是 gnome-2.12 请关注并发表你的意见:
http://bugzilla.gnome.org/show_bug.cgi?id=317121
页: [1]
查看完整版本: Gnome下如何使用像Windows那样的字体大小?