- 字库链接:http://blog.csdn.net/codewarrior/article/details/4200811
- 动态加载字体:http://blog.csdn.net/alien75/article/details/4869462
- Enable ClearType on Windows CE 6.0:http://blogs.msdn.com/b/mikehall/archive/2009/04/17/enabling-cleartype-on-windows-ce-6-0.aspx
- 创建逻辑字体,使能ClearType反锯齿:
-
HFONT CreateFontIndirect(const LOGFONT* lplf);
-
typedef struct tagLOGFONT { LONG lfHeight; LONG lfWidth; LONG lfEscapement; LONG lfOrientation; LONG lfWeight; BYTE lfItalic; BYTE lfUnderline; BYTE lfStrikeOut; BYTE lfCharSet; BYTE lfOutPrecision; BYTE lfClipPrecision; BYTE lfQuality; //--->CLEARTYPE_QUALITY BYTE lfPitchAndFamily; TCHAR lfFaceName[LF_FACESIZE]; } LOGFONT;
-