- CFont font;
- TCHAR szPath[MAX_PATH];
-
- _tcscpy(szPath, _T("%s"), _T("F://11.ttf"));
- LOGFONT lf;
- lf.lfHeight = 60;
- lf.lfWidth = 30;
- lf.lfEscapement = 0;
- lf.lfOrientation = 0;
- lf.lfWeight = 90;
- lf.lfItalic = 0;
- lf.lfUnderline = 0;
- lf.lfStrikeOut = 0;
- lf.lfCharSet = DEFAULT_CHARSET;
- lf.lfOutPrecision = 0;
- lf.lfClipPrecision = CLIP_STROKE_PRECIS;
- lf.lfQuality = 0;
- lf.lfPitchAndFamily = 0;
- _tcscpy(lf.lfFaceName, _T("XXX"));
- font.CreateFontIndirect(&lf);
- ASSERT(font.GetSafeHandle());
-
- if(!AddFontResource(szPath))
- {
- AfxMessageBox(_T("Load font failed."));
- return ;
- }
- ::SendMessage(HWND_BROADCAST, WM_FONTCHANGE, 0, 0);
- GetDlgItem(IDOK)->SetFont(&font);
-
- RemoveFontResource(szPath);
http://blog.csdn.net/visualeleven/article/details/6248115
应用程序加载外部字体文件(使用AddFontResource API函数指定字体)
原文:http://www.cnblogs.com/findumars/p/6002333.html