Windows (and ClearType) vs. Truetype Fonts with Embedded Bitmaps
Round 1: FIGHT!
While I was working on the TrueType versions of the BigBlue Terminal font (and on my upcoming pack of oldschool PC font remakes), a stubborn annoyance cropped up in the form of ClearType. Microsoft's subpixel text rasterizer (optimized for flat-panel displays) doesn't play nice at all with TrueType pixelfonts -- that is, scalable fonts, whose outlines are designed to snap to the pixel grid at a particular size. Depending on your choice of foreground and background colors, you may see smudged colorful fringes that clearly have no business being there:
ClearType's effects on pixel fonts
Without ClearType, the TrueType outlines obediently stick to the pixel
grid: the rendering is identical to the bitmap version of the font. With
ClearType, the subpixel rasterization somehow causes the red and blue
color components to be shifted away in opposite directions,
"overflowing" the grid. This looks laughably similar to the color
fringing
artifacts
that marred text on composite monitors decades ago, even if the causes
are entirely different.
The 'smearing' is usually not very noticeable at typical resolutions, and personally it doesn't bother me that much - but in certain cases, it can get ugly. Now, whether ClearType itself is good or bad is not the issue: current versions of Windows have it enabled by default, most people don't disable it, and Microsoft didn't provide any user control to toggle it per application (or per font), as it damn well should have. Naturally, ClearType wasn't designed with pixelfonts in mind, because they're hardly a typical use case.
This only affects scalable TrueType fonts, of course. Why not just use bitmaps, then? A bitmap grid is the natural format for a pixelfont anyway. Alas, there's no cross-platform format for bitmap fonts -- and the .FON format used by Windows can only handle 8-bit encodings, so full Unicode support is out. While .FON can be useful (and I've ideed included such a version), we're still gonna need TrueType.
Bitmap strikes for 2 damage!
The TrueType format has a trick up its sleeve that we could use to our advantage: on top of the scalable vector glyphs, the .TTF font can contain embedded bitmap strikes. "Strikes" are complete bitmap versions of the scalable font, each tuned for a particular pixel size: whenever a bitmap strike is available for the current size, the text renderer is supposed to use that instead of rasterizing the outlines from scratch.
Apparently, Windows supports this: "ClearType antialiasing is disabled [...] if the font has tuned embedded bitmaps, only for those font sizes that contain the embedded bitmaps". So there - just embed a bitmap strike of the pixelfont's "native" size, and you'll artfully dodge the SmearType issue. Right? Wrong. I tried doing exactly that, but Windows was not impressed - it cheerfully ignored my crisp bitmaps and rendered the outlines through ClearType anyway.
I checked, double-checked and ensured that the TTF and embedded bitmap data were up to spec, but no luck. That ticked me off, because I knew it was supposed to work: several TrueType fonts that ship with Windows have embedded bitmaps which display just fine, even on Windows 10. These are all CJK (East Asian) fonts - MS Mincho, MS Gothic and so on.
After much peeking under the hood, snooping around on the web, wailing and gnashing of teeth, the real problem emerged: current versions of ClearType -- ever since DirectWrite -- have unceremoniously dropped support for embedded bitmap strikes, with the explicit exception of East Asian fonts! MS seems to feel that CJK glyphs are still more readable in bitmap form, but cannot conceive that the same feature would be useful anywhere else, so they simply ditched the option for all other fonts.
Unleashed in the East
The question then becomes, of course, what causes Windows (or DirectWrite, or WPF) to identify a TrueType font as "East Asian" for rasterization purposes. The answer was pieced together from some clues and then confirmed experimentally:
- At least one CJK code page must be specified in the font's 'OS/2' table (e.g. Chinese Traditional, or JIS/Japan); and
- A few seemingly-random East Asian glyphs actually have to exist in
the font.
This finally worked, and produced an outline TTF with usable embedded bitmaps on Windows. Well then, there's our solution... right?
Wrong again, bucko! As it turns out, doing #1 above breaks several other things while fixing the bitmap issue. Most annoyingly,
- The "DOS/OEM" encoding option disappears. The codepage bit field is designed to accommodate several encoding options, but for some nonsensical reason, codepage 437 wants to be exclusive. You can specify it all you want - as soon as you add another one alongside it (such as a CJK codepage), Windows will simply excise "DOS/OEM" from the list of detected encodings.
- The font can no longer be used in console windows. The culprit here
is yet another set of nonsensical restrictions from
Microsoft, which again treat East Asian fonts as a special case (in
a poorly-worded, and probably misleading, way). As if there wasn't
enough brain-damage in forcing the user to perform unsupported
registry hacks just to add *any* TrueType font to the console.
Since both of these things are significant for my purposes, I give up on the embedded bitmap idea - you can only do so much when faced with such a silly combo of arbitrary limitations. If anyone figures out a functional way to sidestep SmearType for TTF pixelfonts, I'm all ears!
6 comments:
You are really finicky, in a good way, which makes me wonder about you whole desktop setup, not just the fonts/truetype part. Got anything special going on there? Which os, browser, resolution, hacks, system font, custom theme, all that good stuff...
Any special tips on how to make fonts in non native resolutions not look like garbage on windows? And of course, big thanks for the font pack! Cheers
Can't say that I really do any extensive tweaking on my desktop environment these days. I've got Windows XP, 7 (daily driver), and 10 (Enterprise LTSB thankfully - cuts out a lot of the crap) running on separate machines, and customizing things gets progressively more annoying with each version. There are a few things I still can't get by without, like Total Commander, UltraEdit and dark backgrounds/small fonts wherever possible. I'd love to find a way to get rid of all that wasted space around taskbar items, icons and buttons in 'modern' Windows themes; preferrably without having to patch system .DLLs, since some recent software has been developing acute paranoia about that (I'm looking at you, VirtualBox).
I actually find Windows' font rendering to be more pleasing than the Mac's (or even Linux), but there's not much you can do about pixel fonts in non-native sizes. If you need the size to be flexible, ultimately you're gonna need truly scalable outlines.
I fixed the SmearType (great name!) problem in my Windows 7 console by patching conhost.exe to use non-antialiased quality for fonts ending in Vector. I updated the font using the tips in the Visual Studio post and yes, in Notepad it did use the bitmaps, but yes, it doesn't show up in the console properties. However, it does work if you select it manually, using HKCU\Console\FaceName, albeit with issues if you want to change font. The latest version of Windows 10 (Anniversary/1607/14393) supports it directly.
Is disabling ClearType not an option?
Disabling ClearType is an option for many, but the effect is system-wide, so most scalable fonts produced with anti-aliasing in mind would look worse. Many do this anyway; but the ideal solution would be being able to disable it per font.
I just found a tool called bdf2ttf (https://github.com/koron/bdf2ttf ) can convert the bitmap file to a bitmap strike.