Gentoo Archives: gentoo-user

From: Benno Schulenberg <benno.schulenberg@×××××.com>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] Re: the font in xfce change after updating
Date: Sun, 29 Apr 2007 10:00:23
Message-Id: 200704291147.40516.benno.schulenberg@gmail.com
In Reply to: Re: [gentoo-user] Re: the font in xfce change after updating by Chuanwen Wu
1 Chuanwen Wu wrote:
2 > The font is out of the control of my .fonts.conf. The english
3 > characters are unclear as you can see in annex e.png.
4
5 You mean there is too much anti-aliasing?
6
7 > And the
8 > Chinese characters are even more worse as you can see in annex
9 > c.png
10
11 You mean there is no anti-aliasing at all? That is what
12 your .fonts.conf specifies, however.
13
14 Try this as your .fonts.conf file, and if it's better, copy the
15 relevant stuff to your original .fonts.conf.
16
17 <?xml version="1.0"?>
18 <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
19 <fontconfig>
20 <match target="font" >
21 <edit mode="assign" name="hinting" >
22 <bool>true</bool>
23 </edit>
24 </match>
25 <match target="font" >
26 <edit mode="assign" name="hintstyle" >
27 <const>hintmedium</const>
28 </edit>
29 </match>
30 <dir>~/.fonts</dir>
31 <match target="font" >
32 <edit mode="assign" name="rgba" >
33 <const>none</const>
34 </edit>
35 </match>
36 <match target="font" >
37 <edit mode="assign" name="antialias" >
38 <bool>true</bool>
39 </edit>
40 </match>
41 </fontconfig>
42
43 PS: Try using a blank line after a piece of quoted mail; it makes it
44 easier to distinguish quotes and replies.
45
46 Benno
47 --
48 gentoo-user@g.o mailing list

Replies

Subject Author
Re: [gentoo-user] Re: the font in xfce change after updating Chuanwen Wu <wcw8410@×××××.com>