我的目標:單擊菜單獲取字符輪廓上的點。
有函數GetGlyphOutline(HDC hdc,,,,),可以獲取點的結構。
1、在C*View::OnLButtonDown(){}可以輸出(給定nChar的輪廓)。
但是我需要變量,class CTextDialog::CDialog;IDD_DIALOG。
(一個輸入文本的編輯框,兩個組合框(選擇字體名稱和字體大小),ok和cancel)
在CTextDialog::GetOutline(){};
CWnd *pWnd=GetDlgItem(IDC_BUTTON); //只在對話框放了一個圖標的控件ID
CRect rect;
pWnd->GetClientRect(&rect);
CDC *pDC=pWnd->GetDC();
LOGFONT logfont;
memset(&logfont, 0, sizeof(LOGFONT));
_tcscpy(logfont.lfFaceName, d_FontName);
logfont.lfCharSet = GB2312_CHARSET;
logfont.lfHeight = GetDeviceCaps(pDC->GetSafeHdc(),LOGPIXELSY)*_ttof(d_FontSize)/72.0;
CFont font;
font.CreateFontIndirect(&logfont);
// CFont* pOldFont = aCDC.SelectObject(&font);
運行到選擇字體對象就會出錯,看msdn對dc的解釋是The device context is an opaque data structure, whose values are used internally by GDI.
權限不對嗎?