如何控制显示中文字体的大小?
请问如何控制显示的中文大小?我用了下面的方法,但中文显示不出来。
ISHELL_CreateInstance( this->m_pIShell, AEECLSID_FONTSYSNORMAL, (void**)&this->pFont );
IDISPLAY_SetFont( this->m_pIDisplay, AEE_FONT_NORMAL, this->pFont );
IDISPLAY_DrawText(this->m_pIDisplay, // Display instance
AEE_FONT_NORMAL, // Use BOLD font
m_TextRes, // Text - Normally comes from resource
-1, // -1 = Use full string length
10, // Ignored - IDF_ALIGN_CENTER
10, // Ignored - IDF_ALIGN_MIDDLE
NULL, // No clipping
IDF_TEXT_TRANSPARENT );
IDISPLAY_Update(this->m_pIDisplay);
改变AEECLSID_FONT_BASIC12参数可以改变字体大小,但只能用于英文。有什么办法吗?