HDC hdc = ::GetDC(m_hWnd); LOGFONT lf = { 0 }; lf.lfWeight = 16; //平均宽度 lf.lfHeight = 40;//字体高度 lf.lfCharSet = GB2312_CHARSET;//字符集 lstrcpy(lf.lfFaceName, _T("宋体")); HFONT hfont = ::CreateFontIndirect(&lf);//创建逻辑字体 HFONT holdfont = (HFONT)SelectObject(hdc, hfont); COLORREF oldcolor=GetTextColor(hdc);//获取DC中的文本颜色 COLORREF color1= SetTextColor(hdc, RGB(0,0,255));//设置指定DC中的文字颜色 int i=SetBkMode(hdc,TRANSPARENT);//设置指定DC的背景混合模式 int i=GetBkMode(hdc);//获取指定DC的背景混合模式 /* 参数:HDC hdc 返回值:如果函数成功,则返回值指定当前后台混合模式(OPAQUE 或 TRANSPARENT) 如果函数失败,则返回值为零 */ RECT rect = { 50,50,400,400 }; DrawText(hdc, _T("GDI测试"), -1, &rect, DT_LEFT); SetTextColor(hdc, color1);//还原 SelectObject(hdc, holdfont); DeleteObject(hfont);
标签:lf,HFONT,MFC,指定,DC,hdc,GetBkMode From: https://www.cnblogs.com/liming19680104/p/17356220.html