Originally posted by mudig
View Post
Announcement
Collapse
No announcement yet.
FreeType 2.7 Bringing DirectWrite/ClearType-Like Rendering -- Much Better Looking Fonts On Linux
Collapse
X
-
- Likes 1
-
Originally posted by AJSB View PostThis is not written with intention to troll at all.
One of the reasons i dropped Windows for Linux was this ClearType )or any for of anti-aliasing) that hurts my eyesight (that, and also any refresh rate bellow 100 Hz be in a LED or CRT monitor), funny enough i finally learned some months ago to get rid of all that crap in Windows (in Linux, i also still had some issues with Browsers but finally also managed to remove all that stuff time ago)...
So now, are you telling me that ClearType crap is gonna start to be (forcefully) implemented in LINUX distros ?!?
I might as well return to W7 if there will not be a EASY WAY TO DISABLE THAT CRAP THAT ALMOST PERMANENTLY DAMAGED MY EYESIGHT if i didn't solve it.
Comment
-
Originally posted by smitty3268 View Post
Windows renders fonts fine now.
Here's a comparison - your screenshot is on top, windows rendering on bottom.
http://i.imgur.com/DSVgjYL.png
When I switched from Windows XP to Linux the fonts looked better on Linux to me (without using infinality). I’m currently using full hinting because the default font (déjà vu sans?) looks bad with slight hinting. Medium and full hinting both look the same.
Comment
-
Okay, thanks. Is there a way we can detect at runtime that sub-pixel positioning is possible? Right now we just look at the requested hinting we pass from fontconfig to freetype, but with this, we need to know more about which version of freetype it is, and how it is configured. Please make sure we have such a method in 2.7. It was the same problem with stem darkening.
Medium and full hinting both look the same.
I thought those patents expired several years ago.
Comment
-
Thanks for the information. I wonder why there is a medium setting in Xfce then.
Comment
-
Originally posted by mudig View Post
Subpixel positioning is done by the toolkit that uses FreeType. Do you mean subpixel hinting? Just test for v40. Note that it might not give you what you expect depending on the font. The compatibility mode and the way it looks depends on the font not being a "native ClearType" font. Fonts like Constantia and Corbel are native CT fonts that are left alone. They will look and behave differently from compatibility fonts. Tricky fonts like DF Kai SB rely on the native hinter to render correctly and are also exempt.
Qt like Skia and others disable subpixel positioning when normal or full hinting is requested, because pixel-grid hinting doesn't combine with subpixel positioning. So we need to know if face loaded by FreeType is can support subpixel positioning. Note it has to be a runtime because a toolkit might be build against a different version of FreeType than it is run with.
Comment
-
Originally posted by mudig View Post
An artifact from whoever decided to create hintslight, hintmedium and hintfull. It was originally conceived as a sharpness control but never mapped to the reality of how FreeType operates. An unfortunate accident of history. I'd like to get rid of it.
Note: Chrome and Chromium doesn't support hintmedium and will fall down to hintslight when it is configured as default.
Comment
Comment