См. здесь для объяснения того, как перечислять шрифты / размеры шрифта для определенного шрифта. Обратите внимание, что шрифты TrueType могут отображаться в любом размере (а не только в заранее определенных), поскольку они основаны на векторах.
int EnumFontSizes(char *fontname)
{
LOGFONT logfont;
ZeroMemory(&logfont, sizeof logfont);
logfont.lfHeight = 0;
logfont.lfCharSet = DEFAULT_CHARSET;
logfont.lfPitchAndFamily = FIXED_PITCH | FF_DONTCARE;
lstrcpy(logfont.lfFaceName, fontname);
EnumFontFamiliesEx(hdc, &logfont, (FONTENUMPROC)FontSizesProc, 0, 0);
return 0;
}
int CALLBACK FontSizesProc(
LOGFONT *plf, /* pointer to logical-font data */
TEXTMETRIC *ptm, /* pointer to physical-font data */
DWORD FontType, /* font type */
LPARAM lParam /* pointer to application-defined data */
)
{
static int truetypesize[] = { 8, 9, 10, 11, 12, 14, 16, 18, 20,
22, 24, 26, 28, 36, 48, 72 };
int i;
if(FontType != TRUETYPE_FONTTYPE)
{
int logsize = ptm->tmHeight - ptm->tmInternalLeading;
long pointsize = MulDiv(logsize, 72, GetDeviceCaps(hdc, LOGPIXELSY));
for(i = 0; i < cursize; i++)
if(currentsizes[i] == pointsize)
return 1;
printf("%d ", pointsize);
currentsizes[cursize] = pointsize;
if(++cursize == 200) return 0;
return 1;
}
else
{
for(i = 0; i < (sizeof(truetypesize) / sizeof(truetypesize[0])); i++)
{
printf("%d ", truetypesize[i]);
}
return 0;
}
}