0

不明な面名「Blah」のフォントを作成するためにWindowsがどの「FamilyName」を使用したか知りたいです。

以下に示すように、フォントは通常どおりに作成されます(WM_PAINTは、フォントを使用して関数の戻り値を出力しますGetOutlineTextMetric()

#include <windows.h>
#include <iostream>

LRESULT CALLBACK WndProc(HWND, UINT, UINT, LONG);

int APIENTRY WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR pszCmdLine, int nCmdShow)
{
    WNDCLASSEX  wndclassx;

    wndclassx.cbSize        = sizeof(WNDCLASSEX);
    wndclassx.style         = CS_HREDRAW | CS_VREDRAW;
    wndclassx.lpfnWndProc   = WndProc;
    wndclassx.cbClsExtra    = 0;
    wndclassx.cbWndExtra    = 0;
    wndclassx.hInstance     = hInstance;
    wndclassx.hIcon         = nullptr;
    wndclassx.hCursor       = LoadCursor(nullptr, IDC_ARROW);
    wndclassx.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);
    wndclassx.lpszMenuName  = nullptr;
    wndclassx.lpszClassName = L"WndProc";
    wndclassx.hIconSm       = nullptr;

    if( !RegisterClassEx(&wndclassx) ) return 0;

    HWND hWnd = CreateWindow(L"WndProc", nullptr, WS_OVERLAPPEDWINDOW | WS_VSCROLL | WS_HSCROLL, CW_USEDEFAULT,
                             CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, nullptr, nullptr, hInstance, nullptr);

    ShowWindow(hWnd, SW_NORMAL);
    UpdateWindow(hWnd);

    MSG msg;
    while( GetMessage(&msg, nullptr, 0, 0) )
    {
        TranslateMessage(&msg);
        DispatchMessage(&msg);
    }

    //  Retorna msg.wParam

    return (int)msg.wParam;
}


LRESULT CALLBACK WndProc (HWND hwnd, UINT message, UINT wParam, LONG lParam)
{
    static HFONT s_hFont;
    static int s_int = -1;
    static TEXTMETRIC s_tm;

    switch ( message )
    {
        case WM_CREATE:
        {
            HDC hDC;
            if( !(hDC = CreateIC(L"Display", nullptr, nullptr, nullptr)) ) return -1;

            LOGFONT lf;
            memset(&lf, 0, sizeof(LOGFONT));

            wcscpy_s(lf.lfFaceName, LF_FACESIZE, L"Blah");

            if( !(s_hFont = CreateFontIndirect(&lf)) )
            {
                DeleteDC(hDC);
                return -1;
            }

            s_hFont = (HFONT)SelectObject(hDC, s_hFont);
            GetTextMetrics(hDC, &s_tm);

            //   Call GetOutlineTextMetrics() with a null buffer address, to get the size of the buffer.
            s_int = GetOutlineTextMetrics(hDC, 0, nullptr);

            s_hFont = (HFONT)SelectObject(hDC, s_hFont);
            DeleteDC(hDC);
        }
        break;

        case WM_PAINT:
        {
            PAINTSTRUCT ps;
            BeginPaint(hwnd, &ps);
            s_hFont = (HFONT)SelectObject(ps.hdc, s_hFont);

            TextOut(ps.hdc, 20, 20, L"Value returned by GetOutlineTextMetrics() function", 50);

            wchar_t buffer[4];
            swprintf(buffer, 4, L"%3d", s_int);
            TextOut(ps.hdc, 20 + 55 * s_tm.tmAveCharWidth, 20, buffer, 3);
            EndPaint(hwnd, &ps);
        }
        break;

        case WM_DESTROY:
        DeleteObject(s_hFont);
        PostQuitMessage(0);
        break;

        default:
        return DefWindowProc(hwnd, message, wParam, lParam);
    }
    return 0;
}

出力

ここに画像の説明を入力してください

編集:私が修正したコードにエラーがありました。の代わりにSelectObject(hDC, s_hFont)WM_CREATE私は持っている必要がありs_hFont = (HFONT)SelectObject(hDC, s_hFont)ます。ただし、出力は変更しませんでした。ただし、最終的な結果は同じです。つまり、関数GetOutlineTextMetrics()は引き続き0を返します。

4

2 に答える 2

2

私の水晶玉は、DC に選択されたフォントが TrueType フォントではないことを示唆しています。

MSDN の一部のバージョンではGetLastError、関数が失敗した理由を調べるために呼び出すことができますが、MSDN の他の (後の?) バージョンでは、その文が削除されています。

于 2012-06-21T14:04:18.320 に答える
0

GetOutlineTextMetrics() は、TrueType フォントでのみ機能します。問題は、あなたがそれを求めていないことです。フォント マッパーには、要求を TrueType フォントで置き換える理由はありません。

マッパーが常に TT フォントを返すようにして、問題を解決します。

        wcscpy_s(lf.lfFaceName, LF_FACESIZE, L"Blah");
        lf.lfOutPrecision = OUT_TT_ONLY_PRECIS;
于 2012-06-21T14:03:47.080 に答える