QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 2934|回复: 9

请问怎样去掉中文字体的边缘模糊?

[复制链接]
发表于 2003-10-31 22:05:01 | 显示全部楼层 |阅读模式
Debian Sarge, 用以前RedHat8.0时候的汉化方式汉化,/etc/fonts/fonts.conf请见附件1, 在/etc/X11/XF86Config-4中的Module定义:
Section "Module"

# This loads the DBE extension module.

    Load        "dbe"   # Double buffer extension
    Load    "xtt"   # Add by Boris

    SubSection  "extmod"
      Option    "omit xfree86-dga"   # don't initialise the DGA extension
    EndSubSection

    Load       "glx"

EndSection


目前Firebird显示效果如附件2, 但在rxvt、gimp等软件中汉字并未被模糊(附件3).
我希望firebird能有附件4中的效果。

请指点。谢谢!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?注册

×
发表于 2003-10-31 22:19:12 | 显示全部楼层
<!-- the rh_prefer_bitmaps options (a nonstandard
Red Hat extension), controls whether embedded
bitmaps, when available are preferred
to antialiased rendering. For Japanese,
we prefer antialiased rendering -->
        <edit name="rh_prefer_bitmaps" mode="assign">
                <bool>false</bool>
        &lt;/edit&gt;
&lt;/match&gt;

将这段话去掉或者将false改为true.
回复

使用道具 举报

 楼主| 发表于 2003-10-31 23:15:29 | 显示全部楼层
thanks
我试试看
回复

使用道具 举报

 楼主| 发表于 2003-10-31 23:34:54 | 显示全部楼层
[quote:30730d3476="conner"]&lt;!-- the rh_prefer_bitmaps options (a nonstandard
Red Hat extension), controls whether embedded
bitmaps, when available are preferred
to antialiased rendering. For Japanese,
we prefer antialiased rendering --&gt;
        &lt;edit name="rh_prefer_bitmaps" mode="assign"&gt;
                <bool>false</bool>
        &lt;/edit&gt;
&lt;/match&gt;

将这段话去掉或者将false改为true.[/quote]

我试过改为true,也试着把这段话去掉,但是情况似乎并没有改善。我已经试过重新启动。
请问其他地方还有类似的设置?
回复

使用道具 举报

发表于 2003-11-1 02:15:08 | 显示全部楼层
firebird字体设为simsun了吗?如果设了,你在kde的字体选项中将防锯齿去掉试试看。
回复

使用道具 举报

 楼主| 发表于 2003-11-1 10:00:32 | 显示全部楼层
简体中文的字体都设为simsun了, 我没有KDE, 用的是fvwm
回复

使用道具 举报

发表于 2003-11-1 16:32:58 | 显示全部楼层
你用置顶的fonts.dir覆盖试试看。
回复

使用道具 举报

发表于 2003-11-1 18:09:18 | 显示全部楼层
不妨試一試以下:

另外一个有用的选项是关掉某个字体的防锯齿(平滑)功能,语法如下:

&lt;match target="font"&gt;
&lt;test qual="any" name="family"&gt;
&lt;string&gt;Lucida Console&lt;/string&gt;
&lt;/test&gt;
&lt;edit name="antialias" mode="assign"&gt;
false
&lt;/edit&gt;
&lt;/match&gt;

也可用下述命令关闭对所有字体的平滑功能:

&lt;match target="font"&gt;
&lt;edit name="antialias" mode="assign"&gt;
false
&lt;/edit&gt;
&lt;/match&gt;

節錄自:
http://www.linuxfans.org/nuke/modules.php?name=Forums&amp;file=viewtopic&amp;t=20603
回复

使用道具 举报

发表于 2003-11-1 18:38:50 | 显示全部楼层
For example

[code:1]
                                       &lt;!-- These settings for bitmap fonts --&gt;

        &lt;match target=&quot;font&quot;&gt;
                &lt;test name=&quot;family&quot;&gt;
                        &lt;string&gt;Tahoma&lt;/string&gt;
                        &lt;string&gt;MingLiU&lt;/string&gt;&lt;string&gt;細明體&lt;/string&gt;
                        &lt;string&gt;PMingLiU&lt;/string&gt;&lt;string&gt;新細明體&lt;/string&gt;
                        &lt;string&gt;SimSun&lt;/string&gt;&lt;string&gt;宋体&lt;/string&gt;
                        &lt;string&gt;NSimSun&lt;/string&gt;&lt;string&gt;新宋体&lt;/string&gt;
                &lt;/test&gt;
                &lt;test name=&quot;pixelsize&quot; compare=&quot;less&quot;&gt;&lt;double&gt;22&lt;/double&gt;&lt;/test&gt;
                &lt;edit name=&quot;antialias&quot; mode=&quot;assign&quot;&gt;&lt;bool&gt;f&lt;/bool&gt;&lt;/edit&gt;
                &lt;edit name=&quot;autohint&quot;&gt;&lt;bool&gt;f&lt;/bool&gt;&lt;/edit&gt;
                &lt;edit name=&quot;hinting&quot;&gt;&lt;bool&gt;t&lt;/bool&gt;&lt;/edit&gt;
        &lt;/match&gt;
        &lt;match target=&quot;font&quot;&gt;
                &lt;test name=&quot;family&quot;&gt;
                        &lt;string&gt;Tahoma&lt;/string&gt;
                        &lt;string&gt;MingLiU&lt;/string&gt;&lt;string&gt;細明體&lt;/string&gt;
                        &lt;string&gt;PMingLiU&lt;/string&gt;&lt;string&gt;新細明體&lt;/string&gt;
                        &lt;string&gt;SimSun&lt;/string&gt;&lt;string&gt;宋体&lt;/string&gt;
                        &lt;string&gt;NSimSun&lt;/string&gt;&lt;string&gt;新宋体&lt;/string&gt;
                &lt;/test&gt;
                &lt;test name=&quot;pixelsize&quot; compare=&quot;more&quot;&gt;&lt;double&gt;22&lt;/double&gt;&lt;/test&gt;
                &lt;edit name=&quot;antialias&quot; mode=&quot;assign&quot;&gt;&lt;bool&gt;t&lt;/bool&gt;&lt;/edit&gt;
                &lt;edit name=&quot;autohint&quot;&gt;&lt;bool&gt;f&lt;/bool&gt;&lt;/edit&gt;
                &lt;edit name=&quot;hinting&quot;&gt;&lt;bool&gt;t&lt;/bool&gt;&lt;/edit&gt;
        &lt;/match&gt;
[/code:1]
回复

使用道具 举报

 楼主| 发表于 2003-11-3 15:38:59 | 显示全部楼层
[quote:9bb5e54e49="AlexWan"]不妨試一試以下:

另外一个有用的选项是关掉某个字体的防锯齿(平滑)功能,语法如下:

&lt;match target="font"&gt;
&lt;test qual="any" name="family"&gt;
&lt;string&gt;Lucida Console&lt;/string&gt;
&lt;/test&gt;
&lt;edit name="antialias" mode="assign"&gt;
false
&lt;/edit&gt;
&lt;/match&gt;

也可用下述命令关闭对所有字体的平滑功能:

&lt;match target="font"&gt;
&lt;edit name="antialias" mode="assign"&gt;
false
&lt;/edit&gt;
&lt;/match&gt;

節錄自:
http://www.linuxfans.org/nuke/modules.php?name=Forums&amp;file=viewtopic&amp;t=20603[/quote]
多谢! 现在simsun的字体平滑已经关闭,看起来比以前好多了 :-)

不过不知道为什么以前有的simsun粗体字现在没有了,怀疑是我的font.dir有问题,等我试试
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-11-5 21:40 , Processed in 0.128437 second(s), 17 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表