Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror

Comment Re:Antialiased Fonts in Mozilla (Score 1) 60

I have this as my Mozilla-TT settings, and the AA'ed fonts look absolutely great:
// TrueType
pref("font.FreeType2.enable", true);
pref("font.freetype2.shared-library", "libfreetype.so.6");
// if libfreetype was built without hinting compiled in
// it is best to leave hinting off
pref("font.FreeType2.autohinted", true);
pref("font.FreeType2.unhinted", true);
// below a certian pixel size anti-aliased fonts produce poor results
pref("font.antialias.min", 6);
pref("font.embedded_bitmaps.max", 1000000);
pref("font.scale.tt_bitmap.dark_text.mi n", 64);
pref("font.scale.tt_bitmap.dark_text.gain", "0.1");
// sample prefs for TrueType font dirs
pref("font.directory.truetype.1", "/usr/share/fonts/truetype/");
pref("font.directo ry.truetype.2", "/usr/share/fonts/truetype/openoffice");

Slashdot Top Deals

Maybe you can't buy happiness, but these days you can certainly charge it.

Working...