|

楼主 |
发表于 2005-3-9 20:49:22
|
显示全部楼层
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 Firefly(firefly@firefly.idv.tw)
- --> <match target="font" >
- <edit mode="assign" name="embeddedbitmap" >
- <bool>true</bool>
- </edit>
- </match>
- <!--
- Add by Firefly(firefly@firefly.idv.tw)
- Most of Asian fonts can't explain by freetype2,
- so,if these fonts have dual width(half/full) and monospacing,
- you need to disable globaladvance.
- --> <match target="font" >
- <test compare="more_eq" name="spacing" >
- <const>dual</const>
- </test>
- <!--
- <edit mode="assign" name="globaladvance" >
- <bool>false</bool>
- </edit>
- --> </match>
- <match target="pattern" >
- <test compare="eq" name="family" qual="any" >
- <string>SimSun</string>
- </test>
- <edit mode="prepend_first" binding="strong" name="family" >
- <string>Tahoma</string>
- </edit>
- </match>
- <!--
- Add by firefly@firefly.idv.tw
- --> <match target="font" >
- <test compare="contains" name="lang" >
- <string>zh-cn</string>
- <string>zh-tw</string>
- <string>ja</string>
- <string>ko</string>
- </test>
- <edit mode="assign" name="autohint" >
- <bool>false</bool>
- </edit>
- <edit mode="assign" name="hintstyle" >
- <const>hintslight</const>
- </edit>
- <edit mode="assign" name="usegamma" >
- <if>
- <less>
- <name>pixelsize</name>
- <double>20</double>
- </less>
- </if>
- <bool>true</bool>
- <bool>false</bool>
- </edit>
- </match>
- <!--
- Add by ***
- Fix size of simsun
- --> <match target="font" >
- <test name="family" qual="any" >
- <string>SimSun</string>
- </test>
- <test compare="more_eq" name="pixelsize" >
- <int>9</int>
- </test>
- <test compare="less_eq" name="pixelsize" >
- <int>12</int>
- </test>
- <edit compare="eq" name="pixelsize" >
- <int>12</int>
- </edit>
- </match>
- <dir>/usr/local/share/fonts</dir>
- <dir>/usr/share/fonts</dir>
- <dir>/usr/X11R6/lib/X11/fonts</dir>
- </fontconfig>
复制代码 |
|