'폰트 앨리어싱'에 해당되는 글 1건

  1. 2010.08.16 우분투에 폰트 앨리어싱 켜기
출처는 http://exifeedi.tistory.com/243


요점은

/etc/fonts/conf.avail/29-language-selector-ko-kr.conf 파일에서

<!-- Turn off antialias and autohint for Korean fonts depending on pixelsize -->
<match target="font">
        <test name="lang" compare="contains">
                <string>ko</string>
        </test>
        <test name="pixelsize" compare="more">
                <int>10</int>
        </test>
        <test name="pixelsize" compare="less">
                <int>22</int>
        </test>
        <edit name="antialias" mode="assign">
                <bool>false</bool>
        </edit>
        <edit name="autohint" mode="assign">
                <bool>false</bool>
        </edit>
        <edit name="hintstyle" mode="assign">
                <const>hintmedium</const>
        </edit>
</match>



이 부분에서 붉은 부분을 true로 바꿔주는것이 포인트
Posted by The케이아스
,