KDE쓰면서 느낀건데, 윈도우와 우분투비해서 폰트가 흐릿해보인다.

그래서 자료 뒤져서 해결책을 찾았다.

https://forum.kde.org/viewtopic.php?f=66&t=162976#

 

KDE does not render fonts like Ubuntu. How to Fix it? • KDE Community Forums

 

forum.kde.org

이 글에서 내용보면 .fonts.conf에 (없으면 생성) 아래에 있는 코드를 적어주면 된다고 한다.

<?xml version='1.0'?>
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
<fontconfig>
 <dir>~/.fonts</dir>
 
  <match target="font">
  <edit mode="assign" name="rgba">
   <const>rgb</const>
  </edit>
 </match>
 
  <match target="font">
  <edit mode="assign" name="hinting">
   <bool>true</bool>
  </edit>
 </match>
 
 <match target="font">
  <edit mode="assign" name="autohint">
   <bool>true</bool>
  </edit>
 </match>
 
 <match target="font">
  <edit mode="assign" name="hintstyle">
   <const>hintslight</const>
  </edit> 
 </match>

  <match target="font">
  <edit mode="assign" name="lcdfilter">
   <int>2</int>
  </edit> 
 </match>
 
</fontconfig>

 

적용 전

 

폰트는 나눔고딕이며, 크기는 10.5로 되어 있다.

 

적용 후

비교해 보면 설정한게 더 선명해졌다.

+ Recent posts