|
|
发表于 2004-10-5 15:36:07
|
显示全部楼层
最初由 Hauser 发表
Beautiful! Please post your relevant config files for our references.
btw I use AA because they look nice on my 17" LCD (with 1280x1024 resolution). Of course, I understand that with AA turned on, the fonts may not look so clearly on other people's monitors.
惭愧,我的fonts.conf一直是用Magic Linux的,只字未改。:p
fonts.conf
local.conf:
- <?xml version="1.0"?>
- <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
- <!-- /etc/fonts/local.conf file for local customizations -->
- <fontconfig>
- <!--
- Enable sub-pixel rendering
- <match target="font">
- <test qual="all" name="rgba">
- <const>unknown</const>
- </test>
- <edit name="rgba" mode="assign"><const>rgb</const></edit>
- </match>
- -->
- <!--
- Add by ***
- Fix size of simsun
- -->
- <match target="font">
- <test qual="any" name="family">
- <string>SimSun</string>
- </test>
- <test name="pixelsize" compare="more_eq">
- <int>9</int>
- </test>
- <test name="pixelsize" compare="less_eq">
- <int>12</int>
- </test>
- <edit name="pixelsize" compare="eq">
- <int>12</int>
- </edit>
- </match>
- </fontconfig>
复制代码 |
|