[quote:88622e1329="osnaile"]你是在哪儿设置的?是 /etc/fonts/fonts.conf 吗?要不你贴上来让我学习一下[/quote]
[code:1]
<match target="font">
<test qual="any" name="family"><string>SimSun</string></test>
<edit name="antialias" mode="assign"><bool>false</bool></edit>
</match>
[/code:1]
关掉所有字号的SimSun的AA
[code:1]
<match target="font">
<test qual="any" name="family" compare="eq"><string>SimSun</string></test>
<test name="pixelsize" compare="more_eq"><double>12</double></test>
<test name="pixelsize" compare="less_eq"><double>16</double></test>
<edit name="antialias"><bool>false</bool></edit>
</match>
[/code:1]
关掉12~16pixelsize大小的SimSun的AA,包括12和16pixelsize
[code:1]
<match target="font" >
<test qual="any" name="family" compare="eq"><string>SimSun</string></test>
<test compare="more" name="size" qual="any" ><double>9</double></test>
<test compare="less" name="size" qual="any" ><double>12</double></test>
<edit mode="assign" name="antialias" ><bool>false</bool></edit>
</match>
[/code:1]
关掉12~16size大小的SimSun的AA,不包括12和16size。pixelsize和size是不同的度量单位
[code:1]
<match target="font">
<test name="lang" compare="contains">
<string>zh</string>
</test>
<edit mode="assign" name="antialias" ><bool>false</bool></edit>
</match>
[/code:1]
关掉所有字号的中文字体的AA。这一个没事过,可能无效,你先试试看

不行的话就再加
[code:1]
<match target="font">
<test target="pattern" name="lang" compare="contains">
<string>zh</string>
</test>
<edit mode="assign" name="antialias" ><bool>false</bool></edit>
</match>
[/code:1]