SFML community forums

Help => Graphics => Topic started by: rcplusplus on May 22, 2012, 07:21:19 pm

Title: Large text appears blurry
Post by: rcplusplus on May 22, 2012, 07:21:19 pm
I use the sf::String class to show text on the screen, and it looks okay at small sizes, but if I make the text 96pt, the it appears really blurry. I did SetSmooth(false) on the sf::Font object, but the it appears blurry and pixel-y! Is there any way  to have large, clean-looking text in SFML 1.6?
Title: Re: Large text appears blurry
Post by: Lo-X on May 22, 2012, 07:30:29 pm
. I did SetSmooth(false) on the sf::Font object

Hmm, what if you try setSmooth(true) ?
Title: Re: Large text appears blurry
Post by: rcplusplus on May 22, 2012, 07:43:23 pm
That's the default I think, and it still appears blurry.
Title: Re: Large text appears blurry
Post by: Laurent on May 22, 2012, 11:35:23 pm
The font must be loaded with the same size that you'll use in the string. Otherwise the characters are stretched.