摘要:
VC中文字旋转实现方式:1、不使用Graphics,直接用CDC绘制方法:编辑字体,然后DC选中这个字体,即可实现具体: CFont* pFont = pDC->GetCurrentFont(); LOGFONT logFont ; pFont->GetLogFont(&logFont); logFont.lfEscapement = 600;//900/10 = 90 wcscpy(logFont.lfFaceName,L"楷体_GB2312"); HFONT hFont = CreateFontIndirect(&logFont); pDC- 阅读全文