天天看点

一段使linux中中文字体美化的有用代码

把下面的代码添加到/etc/fonts/fonts.conf中相应的地方。即可实现对slackware的中文字体Vera Sans YuanTi字体的美化,使其显示细腻圆滑的中文字体

        <match target="font">

                <test name="family"><string>Vera Sans YuanTi</string></test>

                <edit name="globaladvance"><bool>false</bool></edit>

        </match>

        <match target="font">

                <test name="family"><string>Vera Sans YuanTi Mono</string></test>

                <edit name="globaladvance"><bool>false</bool></edit>

        </match>

        <match target="font">

                <edit name="antialias"><bool>true</bool></edit>

                <edit name="hinting"><bool>false</bool></edit>

                <edit name="autohint"><bool>false</bool></edit>

        </match>

        <match target="font">

                <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>

                <edit name="hinting"><bool>true</bool></edit>

                <edit name="autohint"><bool>false</bool></edit>

        </match> 

继续阅读