|
|

楼主 |
发表于 2005-4-25 13:25:46
|
显示全部楼层
local.conf做了以下的修改:
这段没comment之前firefox是正常的,但没有anti. comment后有了anti.但firefox的中文粗体就变成像上图一样了
<!--
don't use antialiasing if font size is between 6 and 18.
if you prefer AA fonts, you can simply comment out the following lines. -->
<!--
comment by hunhun
<match target="font" >
<test compare="contains" name="lang" >
<string>zh-cn</string>
<string>zh-tw</string>
<string>ja</string>
<string>ko</string>
</test>
<test compare="more_eq" name="size" qual="any" >
<double>6</double>
</test>
<test compare="less_eq" name="size" qual="any" >
<double>18</double>
</test>
<edit mode="assign" name="antialias" >
<bool>false</bool>
</edit>
</match>
<match target="font" >
<!--
<test compare="contains" name="lang" >
<string>zh-cn</string>
<string>zh-tw</string>
<string>ja</string>
<string>ko</string>
</test>
-->
<test compare="more_eq" name="pixelsize" qual="any" >
<double>8</double>
</test>
<test compare="less_eq" name="pixelsize" qual="any" >
<double>24</double>
</test>
<edit mode="assign" name="antialias" >
<bool>false</bool>
</edit>
</match>
--> |
|