본문 바로가기
Ubuntu

안티앨리어싱

by 따스한사람냄새 2009. 11. 2.
우분투를 처음 사용하게 되면.. 메뉴 같은 곳에 글씨가 깨어져서 나오는 것을 발견할 수 있을 것이다.




그것은 현재 내가 사용하는 9.04버전 뿐 아니라 최근에 나온 9.10에서 역시 마찬가지라고 한다.

그것을 해결하기 위해선, 몇가지 설정을 해주어야 하는다 그것은 다음과 같다.

From. 떠돌이님(opensea)

1. 터미널에서 아래 명령을 써줍니다.

sudo gedit /etc/fonts/conf.d/29-language-selector-ko-kr.conf

2. 에디터가 나오면

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

위와 같이 부분에 <!-- --> 로 금줄(?)을 쳐줍니다.(빨간 부분이 추가된 부분)

3. 한군데 더 있습니다.

<!-- Turn off antialias and autohint for ttf-alee depending on pixelsize -->
<!-- <match target="font">
        <test name="family">
                <string>Guseul</string>
        </test>
        <edit name="autohint" mode="assign">
        <bool>true</bool>
    </edit>
</match>
<match target="font">
        <test name="family">
                <string>Guseul</string>
                <string>Guseul Mono</string>
        </test>
    <test name="pixelsize" compare="more">
        <int>11</int>
    </test>
    <test name="pixelsize" compare="less">
        <int>16</int>
    </test>
    <edit name="antialias" mode="assign">
        <bool>false</bool>
    </edit>
        <edit name="autohint" mode="assign">
        <bool>false</bool>
    </edit>
</match> -->