Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Fonts scale down poorly
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Desktop Environments
View previous topic :: View next topic  
Author Message
Dr. Frankenbox
Apprentice
Apprentice


Joined: 16 Jul 2005
Posts: 171
Location: Iowa, USA

PostPosted: Thu May 31, 2007 3:04 pm    Post subject: Fonts scale down poorly Reply with quote

For some time, I've noticed that fonts look terrible on my computer in Linux at less than 10pt or so. I'd post an example, but I have no idea where I'd host the image. Basically, they're unreadable.

Sometimes I try increasing the font size in Firefox so this doesn't happen on websites, but then the settings carry over between sites, making some text way too large. If somebody sets their font for AIM or another instant messenger really small, I don't really have any recourse save copy-pasting into a text editor where I can control the font. I'd really like a permanent solution to this, but I don't even know how to begin. Do I need to get better fonts somewhere?
Back to top
View user's profile Send private message
wrdaniel
n00b
n00b


Joined: 30 Dec 2006
Posts: 40

PostPosted: Thu May 31, 2007 5:23 pm    Post subject: Reply with quote

One of the best readable fonts for small sizes is "Verdana" [Portage - corefonts]. try to enable it as standard font in your browser, disable AntiAliasing for fonts smaller then 8pt. and enable FullHinting. i can set these settings in KDE ControlCenter. Dont know about Gnome. You can also change your .fonts.conf file. here's mine

Code:
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
 <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="hintstyle" >
   <const>hintfull</const>
  </edit>
 </match>
 <match target="font" >
  <edit mode="assign" name="antialias" >
   <bool>true</bool>
  </edit>
 </match>
 <match target="font" >
  <test compare="more_eq" name="size" qual="any" >
   <double>0</double>
  </test>
  <test compare="less_eq" name="size" qual="any" >
   <double>7</double>
  </test>
  <edit mode="assign" name="antialias" >
   <bool>false</bool>
  </edit>
 </match>
 <match target="font" >
  <test compare="more_eq" name="pixelsize" qual="any" >
   <double>0</double>
  </test>
  <test compare="less_eq" name="pixelsize" qual="any" >
   <double>9</double>
  </test>
  <edit mode="assign" name="antialias" >
   <bool>false</bool>
  </edit>
 </match>
</fontconfig>


hope it helps. You may also check your dpi settings.
Code:
xdpyinfo | grep -B1 dots
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Desktop Environments All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum