You are not logged in.

#51 2008-01-07 07:48:17

Fackamato
Member
Registered: 2006-03-31
Posts: 579

Re: Improved subpixel font rendering

bionnaki wrote:

thanks. got the ubuntu packages installed. highly recommended.

How do they compare to xeffects or -lcd ?

Offline

#52 2008-01-07 08:06:20

bionnaki
Member
Registered: 2006-09-05
Posts: 289

Re: Improved subpixel font rendering

well, with my setup, the -lcd packages were too intense for me and gave me a headache. have not tried the xeffects. im absolutely content with the ubuntu patches.

Offline

#53 2008-01-07 16:27:39

mintcoffee
Member
From: Waterloo, ON
Registered: 2007-10-05
Posts: 120
Website

Re: Improved subpixel font rendering

I was using the -lcd packages previously, and the -ubuntu packages have much better weight. the -ubuntu pacthes are not too bold, and the shape of the glyphs are much nicer IMO.


Arch on a Thinkpad T400s

Offline

#54 2008-01-07 17:11:16

Fackamato
Member
Registered: 2006-03-31
Posts: 579

Re: Improved subpixel font rendering

mintcoffee wrote:

I was using the -lcd packages previously, and the -ubuntu packages have much better weight. the -ubuntu pacthes are not too bold, and the shape of the glyphs are much nicer IMO.

Interesting! I'm using xeffects now, and if I'd switch to -ubuntu packages, and see an improvement, I think we have a winner... we'll see if I can be arsed to test -ubuntu tongue

Offline

#55 2008-01-07 17:59:56

WiLLiE
Member
From: Sweden
Registered: 2005-02-27
Posts: 135

Re: Improved subpixel font rendering

I can't say I saw a difference between the *-lcd and *-ubuntu patches. But atleast it allowed me to compile Firefox3 with LCD-filtering.
http://aur.archlinux.org/packages.php?d … s=0&SeB=nd

Offline

#56 2008-01-11 10:28:41

capthookb
Member
Registered: 2007-12-10
Posts: 124

Re: Improved subpixel font rendering

I didn't notice any improvement in qt applications either.
Only in gtk applications, like firefox i noticed better font appearance.
Is there anything extra i must do to see results; I have enabled sub pixel-hinting in kde control center.

Offline

#57 2008-01-11 10:56:53

capthookb
Member
Registered: 2007-12-10
Posts: 124

Re: Improved subpixel font rendering

Never mind, i fixed it. I think it had something to do with fontconfig configuration. I erased my previous settings and i fixed it smile
Great packages :-)

Offline

#58 2008-01-11 11:30:50

iggy
Member
From: Germany, L.E. - Leipzig
Registered: 2004-10-17
Posts: 367

Re: Improved subpixel font rendering

installed the ubuntu-packages from aur. fonts look good, nice alaising.

BUT: the fonts are a bit blurred!! that's is not what i want!

can someone help me?

here is my /etc/fonts/local.conf:

<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
    <!-- Info at http://gentoo-wiki.com/HOWTO_Xorg_and_Fonts -->

    <!-- Replace Courier with a better-looking font -->
    <match target="pattern" name="family">
        <test name="family" qual="any">
            <string>Courier</string>
        </test>
        <edit name="family" mode="assign">
            <!-- Other choices - Courier New, Luxi Mono -->
            <string>Bitstream Vera Sans Mono</string>
        </edit>
    </match>
    <!-- set dpi -->
    <!--<match target="pattern">
            <edit name="dpi" mode="assign"><double>96</double></edit>
    </match>-->

    <match target="font">
        <!-- subpixel rendering -->
        <edit name="rgba" mode="assign">
            <const>rgb</const>
        </edit>
        <!-- autohinter -->
        <edit name="autohint" mode="assign">
            <bool>true</bool>
        </edit>
        <edit name="hinting" mode="assign">
            <bool>true</bool>
        </edit>
        <edit name="hintstyle" mode="assign">
            <const>hintfull</const>
        </edit>
        <!-- anti aliasing -->
        <edit name="antialias" mode="assign">
            <bool>true</bool>
        </edit>
    </match>

    <!-- Disable autohint for bold fonts, otherwise they look *too* bold -->
    <match target="font">
           <test name="weight" compare="more">
            <const>medium</const>
        </test>
           <edit name="autohint" mode="assign">
            <bool>false</bool>
        </edit>
    </match>

    <!-- Reject bitmap fonts in favour of Truetype, Postscript, etc. -->
    <selectfont>
        <rejectfont>
            <pattern>
                <patelt name="scalable">
                    <bool>false</bool>
                </patelt>
            </pattern>
        </rejectfont>
    </selectfont>

</fontconfig>

thanks, mfg
iggy

Last edited by iggy (2008-01-11 11:31:31)


sorry for my bad english smile

Offline

#59 2008-01-11 12:06:37

bionnaki
Member
Registered: 2006-09-05
Posts: 289

Re: Improved subpixel font rendering

I just use

<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="font" >
<test compare="more" name="weight">
<const>medium</const>
</test>
<edit mode="assign" name="autohint">
<bool>false</bool>
</edit>
</match>
</fontconfig>

Offline

#60 2008-01-11 20:15:12

iggy
Member
From: Germany, L.E. - Leipzig
Registered: 2004-10-17
Posts: 367

Re: Improved subpixel font rendering

bionnaki wrote:

I just use

<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="font" >
<test compare="more" name="weight">
<const>medium</const>
</test>
<edit mode="assign" name="autohint">
<bool>false</bool>
</edit>
</match>
</fontconfig>

no, not that i was looking for!


sorry for my bad english smile

Offline

#61 2008-01-11 20:26:42

brebs
Member
Registered: 2007-04-03
Posts: 3,742

Re: Improved subpixel font rendering

iggy, see bug re blurring. Show a screenshot, otherwise there is not enough information being provided.

Offline

#62 2008-01-11 20:46:00

iggy
Member
From: Germany, L.E. - Leipzig
Registered: 2004-10-17
Posts: 367

Re: Improved subpixel font rendering

here is a shot:

blurred_fonts.jpg

i hope, that someone knows/finds a solution! smile

mfg iggy


sorry for my bad english smile

Offline

#63 2008-01-11 21:02:19

brebs
Member
Registered: 2007-04-03
Posts: 3,742

Re: Improved subpixel font rendering

Your screenshot looks fine. Perhaps your screen is the problem. Try a different "subpixel order", e.g. BGR rather than the default RGB.

Offline

#64 2008-01-21 13:39:17

capthookb
Member
Registered: 2007-12-10
Posts: 124

Re: Improved subpixel font rendering

Do you notice perfomance drop when using sub pixel hinting? I can't stand it. The fonts look great but the system gets slow. For example in konsole the text scrolls like in waves, big stripes of text go upwards in slow motion.

Offline

#65 2008-01-22 13:43:12

Gustavo
Member
From: Brazil
Registered: 2006-07-04
Posts: 92

Re: Improved subpixel font rendering

*-ubuntu made my day. Fonts look much better.

Offline

#66 2008-02-08 10:35:48

xsdnyd
Member
Registered: 2007-04-28
Posts: 110

Re: Improved subpixel font rendering

hi, for everyone who doesn't want to compile these packages by themselves...
i updated my repository and it includes now:
cairo-ubuntu
fontconfig-ubuntu
freetype2-ubuntu
libxft-ubuntu
firefox3-systemcairo

so everything to start with the improved font rendering including the system cairo firefox build.
here are the information for my repo:
http://bbs.archlinux.org/viewtopic.php?id=42588


We can't stop here! This is bat country!!

Offline

#67 2008-02-09 19:26:25

abstracity
Member
From: Houston, USA
Registered: 2007-08-08
Posts: 83

Re: Improved subpixel font rendering

Oh my gosh -- text looks so good now!  The Ubuntu originals in the AUR work superbly on my dual-head setup (2 LCD; 1 DVI and 1 VGA) as well as on my MacBook which features a glossy LCD display.  Thanks brebs and xsdnyd!

For reference, I have these Ubuntu-patched packages installed: cairo-ubuntu, fontconfig-ubuntu, freetype2-ubuntu, libxft-ubuntu.

My .fonts.conf is rather minimalistic:

<match target="font" >
        <edit mode="assign" name="rgba" >
                <const>rgb</const>
        </edit>
</match>

Last edited by abstracity (2008-02-09 19:28:56)


Without error there can be no brilliancy. ― Emanuel Lasker

Offline

#68 2008-02-09 21:11:30

McQueen
Member
From: Arizona
Registered: 2006-03-20
Posts: 387

Re: Improved subpixel font rendering

@abstracity: if you can pull a screenshot I'd like to see the results.


/path/to/Truth

Offline

#69 2008-02-12 12:09:35

orjanp
Member
From: Tromsoe, Norway
Registered: 2004-07-03
Posts: 347

Re: Improved subpixel font rendering

xsdnyd wrote:

hi, for everyone who doesn't want to compile these packages by themselves...
i updated my repository and it includes now:
cairo-ubuntu
fontconfig-ubuntu
freetype2-ubuntu
libxft-ubuntu
firefox3-systemcairo

so everything to start with the improved font rendering including the system cairo firefox build.
here are the information for my repo:
http://bbs.archlinux.org/viewtopic.php?id=42588

Installed this. My fonts now look much nicer. smile

Thanks

Orjanp...


Ørjan Pettersen

Offline

#70 2008-02-12 13:22:32

Misfit138
Misfit Emeritus
From: USA
Registered: 2006-11-27
Posts: 4,189

Re: Improved subpixel font rendering

Would one of you gentlemen like to add the above package information to this page in the wiki as an alternate method?
http://wiki.archlinux.org/index.php/Fon … r_LCD_in_X

Offline

#71 2008-03-06 16:20:25

ST.x
Member
From: Sydney, Australia
Registered: 2008-01-25
Posts: 363
Website

Re: Improved subpixel font rendering

capthookb wrote:

Never mind, i fixed it. I think it had something to do with fontconfig configuration. I erased my previous settings and i fixed it smile
Great packages :-)

Just wondering which settings you erased for this? Are you referring to the part from the wiki:

Reset your font configuration:
As root:
rm /etc/fonts/conf.d/*
pacman -S fontconfig

Set the FreeType autohinter. As root :
ln -s /etc/fonts/conf.avail/10-autohint.conf /etc/fonts/conf.d/10-autohint.conf

Well with the ubuntu fontconfig instead of fontconfig then.

Last edited by ST.x (2008-03-06 19:37:24)

Offline

#72 2008-04-17 07:23:31

sambo99
Member
Registered: 2008-04-17
Posts: 11

Re: Improved subpixel font rendering

Hi there,

I must be missing something, I installed

cairo-ubuntu
fontconfig-ubuntu
freetype2-ubuntu
libxft-ubuntu

I also added the autohint link

(everything compiled and seemed to work)

But ... im missing sub pixel smoothing and everything looks ugly. Obviously Ive messed up somewhere. My laptop has the old version of the lcd fonts installed and it worked great. but my desktop now is a big mess sad

How would I go about figuring out what is wrong?

Thanks so much for your time
Sam

Offline

#73 2008-04-17 08:29:36

zenlord
Member
From: Belgium
Registered: 2006-05-24
Posts: 1,221
Website

Re: Improved subpixel font rendering

Offline

#74 2008-04-17 23:22:51

sambo99
Member
Registered: 2008-04-17
Posts: 11

Re: Improved subpixel font rendering

Thanks Zenlord!

I skipped some steps and forgot to install some nice fonts. It all looks really good now.

Cheers
Sam

Offline

#75 2009-02-18 13:14:05

aquila_deus
Member
From: Taipei
Registered: 2005-07-02
Posts: 348
Website

Re: Improved subpixel font rendering

capthookb wrote:

Do you notice perfomance drop when using sub pixel hinting? I can't stand it. The fonts look great but the system gets slow. For example in konsole the text scrolls like in waves, big stripes of text go upwards in slow motion.

Yes, not that slow here but still much slower...

Offline

Board footer

Powered by FluxBB