首页 > 代码库 > 应用程序加载外部字体文件(使用AddFontResource API函数指定字体)
应用程序加载外部字体文件(使用AddFontResource API函数指定字体)
[cpp] view plain copy
- /*
- MSDN:
- Any application that adds or removes fonts from the system font table should notify other windows of the change by sending a WM_FONTCHANGE message to all top-level windows in the operating system. The application should send this message by calling the SendMessage function and setting the hwnd parameter to HWND_BROADCAST.
- When an application no longer needs a font resource that it loaded by calling the AddFontResource function, it must remove that resource by calling the RemoveFontResource function.
- This function installs the font only for the current session. When the system restarts, the font will not be present. To have the font installed even after restarting the system, the font must be listed in the registry.
- */
- // 定义为成员变量
- 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函数指定字体)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。