我正在研究WinCE设备,正在研究GDI,我正在尝试更改字体类型,我已启用目录项中的所有字体类型(Arial,Comic Sans MS,Courier New,Georgia,Tahoma,Times New Roman,Trebuchet MS,Veradana),我想使用那些字体,但那些不起作用,设备只能使用默认字体,
我正在使用的代码如下所示......
void CreateText ()
{
// First, clear all fields.
memset (&logfont, 0, sizeof (logfont));
// Create a GDI Times New Roman font.
logfont.lfHeight = 20;
logfont.lfWidth = 0;
logfont.lfEscapement = 0;
logfont.lfOrientation = 0;
logfont.lfWeight = FW_BOLD;
logfont.lfItalic = TRUE;//FALSE;
logfont.lfUnderline = FALSE;
logfont.lfStrikeOut = FALSE;
logfont.lfCharSet = DEFAULT_CHARSET;
logfont.lfOutPrecision = OUT_DEFAULT_PRECIS;
logfont.lfClipPrecision = CLIP_DEFAULT_PRECIS;
logfont.lfQuality = DEFAULT_QUALITY;
logfont.lfPitchAndFamily = DEFAULT_PITCH | FF_DONTCARE;
_tcsncpy (logfont.lfFaceName, TEXT("Arial"), LF_FACESIZE); //Comic Sans MS
logfont.lfFaceName[LF_FACESIZE-1] = TEXT('\0'); // Ensure null termination
hfontTimes = CreateFontIndirect (&logfont);
//CreatePointFontIndirect(&logfont);
if (!hfontTimes) {
// CreateFontIndirect failed. Insert code here for error
// handling.
printf("\n CreateFontIndirect failed... ");
}
//SendMessage(NULL,WM_SETREDRAW,(WPARAM)TRUE,NULL);
}
void initiateText ()
{
// Get a GDI DC onto the backbuffer, where you will render the text.
hdcSurface = GetDC (NULL);
// Select the font into the DC.
hfontSave = (HFONT) SelectObject (hdcSurface, hfontTimes);
// Set the background mode to transparent, so there is no
// rectangle behind the text.
SetBkMode (hdcSurface, TRANSPARENT);
}
void printText (HDC hdcSurface,
int screen_x,
int screen_y,
LPTSTR lpszText,
COLORREF color)
{
int bReturn;
// Set text color.
SetTextColor (hdcSurface, color);
bReturn = ExtTextOut (hdcSurface,
screen_x,
screen_y,
0, // No flags set
NULL, // No clipping rectangle
lpszText, // String to display
lstrlen (lpszText), // Number of characters
NULL); // Use default spacing.
}
如上所述,所选字体未显示在屏幕上,正在寻找您的建议。
答案 0 :(得分:0)
步骤1是确定字体是否实际在系统中并已注册。调用EnumFontFamilies
将告诉您操作系统实际看到的内容,以及您需要为lfFaceName
参数使用的确切名称。
修改强>
如果在枚举时字体没有出现,那就告诉我它们不在操作系统中。可能有许多原因导致他们没有进入操作系统。查看操作系统映像的BUILDRELDIR
,看看它们是否在那里。如果它们是,那么听起来你没有makeimg
将它们带入实际的操作系统。同时检查ce.bib
以查看构建系统是否实际被告知要包含它们(某些项目或平台文件可能已明确排除它们)。
最后一种强制方式是确保字体文件在设备上,然后在应用启动时调用AddFontResource
。