Tagged Questions
4
votes
1answer
451 views
Uniscribe Kerning
At work, I have been tasked with improving the text rendering of our application to better support text character kerning. Our application generates images that appear on Television, so image quality ...
1
vote
1answer
108 views
Why doesn't FONTSIGNATURE reflect lfCharSet?
I'm enumerating Windows fonts like this:
LOGFONTW lf = {0};
lf.lfCharSet = DEFAULT_CHARSET;
lf.lfFaceName[0] = L'\0';
lf.lfPitchAndFamily = 0;
::EnumFontFamiliesEx(hdc, &lf,
...