访问IMWrite TextFormat而不是创建新的(FW1FontWrapper行间距)

时间:2013-01-26 11:43:24

标签: c++ reference directx directx-11

我正在使用FW1FontWrapper库来封装我在DirectX 11 C ++应用程序中使用的字体。

我想在用FW1FontWrapper呈现的文本中更改行间距(两行文本之间的距离)。

我知道在DirectX中我可以使用IDWriteTextFormat::SetLineSpacing(DWRITE_LINE_SPACING_METHOD_UNIFORM, 30.0f, 20.0f)

不幸的是,我不知道如何访问正确的IDWriteTextFormat结构。

我试过:

HRESULT hResult = FW1CreateFactory(FW1_VERSION, &FW1Factory);
hResult = FW1Factory->CreateFontWrapper(device, L"Arial", &fontWrapper);

//my attemp - first get the IDWriteFactory
IDWriteFactory *pDWriteFactory;
hResult = fontWrapper->GetDWriteFactory(&pDWriteFactory);

//and now the IDWriteTextFormat 
IDWriteTextFormat *pTextFormat;
hResult = pDWriteFactory->CreateTextFormat(L"Arial", NULL, 
    DWRITE_FONT_WEIGHT_NORMAL, DWRITE_FONT_STYLE_NORMAL, 
    DWRITE_FONT_STRETCH_NORMAL, 10.0f, L"", &pTextFormat);
pTextFormat->SetLineSpacing(DWRITE_LINE_SPACING_METHOD_UNIFORM, 100.f, 20.0f);

我想这不起作用,因为这样我创建和修改 IDWriteTextFormat,而不是那些会影响渲染的人:

fontWrapper->DrawString(
   context,
   s2ws(content).c_str(),// String
   fontSize,// Font size
   startTextPosition.getX(),// X position
   startTextPosition.getY(),// Y position
   color,// Text color, 0xAaBbGgRr
   FW1_RESTORESTATE// Flags (for example FW1_RESTORESTATE to keep 
        //context states unchanged)
 );

那么,如何访问权限IDWriteTextFormat(我将修改的那个,将对渲染产生影响;而不是新的影响)?

据我所知FW1FontWrapper没有自己设置行间距的方法。

1 个答案:

答案 0 :(得分:5)

查看FW1FontWrapper模块的源代码,您可以看到DrawString内部使用了您无法访问的默认IDWriteTextFormat

解决方案是使用DrawTextLayout代替DrawString

要执行此操作(使用变量名称),请先在现有代码中创建工厂和IFW1FontWrapper

HRESULT hResult = FW1CreateFactory(FW1_VERSION, &FW1Factory);
hResult = FW1Factory->CreateFontWrapper(device, L"Arial", &fontWrapper);

然后获取DWrite工厂并创建具有所需行间距的IDWriteTextFormat(同样,这是您现有的代码):

// get the DirectWrite factory used by the font-wrapper
IDWriteFactory *pDWriteFactory;
hResult = fontWrapper->GetDWriteFactory(&pDWriteFactory);

// create an IDWriteTextFormat and set line spacing
IDWriteTextFormat *pTextFormat;
hResult = pDWriteFactory->CreateTextFormat(L"Arial", NULL, 
    DWRITE_FONT_WEIGHT_NORMAL, DWRITE_FONT_STYLE_NORMAL, 
    DWRITE_FONT_STRETCH_NORMAL, 10.0f, L"", &pTextFormat);
pTextFormat->SetLineSpacing(DWRITE_LINE_SPACING_METHOD_UNIFORM, 100.f, 20.0f);

接下来,为您的字符串创建IDWriteTextLayout(使用您的变量名称)并使用上面创建的IDWriteTextFormat

// create a DirectWrite text layout for the string
// using the above IDWriteTextFormat 
IDWriteTextLayout *pTextLayout;
unsigned int stringLength = s2ws(content).size();
hResult = pDWriteFactory->CreateTextLayout(
    s2ws(content).c_str(),
    stringLength,
    pTextFormat,
    0.0f,
    0.0f,
    &pTextLayout);

IDWriteTextLayout对象中设置字体大小:

// set the required font size
DWRITE_TEXT_RANGE allText = {0, stringLength};
pTextLayout->SetFontSize(fontSize, allText);

最后,使用DrawTextLayout(再次使用您的变量名称)绘制文本:

// draw the text
fontWrapper->DrawTextLayout(
    context,
    pTextLayout,
    startTextPosition.getX(),
    startTextPosition.getX(),
    color,
    NULL,
    NULL,
    FW1_RESTORESTATE);

// tidy up interfaces
pTextLayout->Release();
pTextLayout = NULL;

我可能从您现有的代码中做了一些错误的假设,但您可以看到如何通过IDWriteTextFormat实例使用自己的IDWriteTextLayout,然后使用DrawTextLayout代替{{ 1}}。我希望这会有所帮助。