IDWriteGdiInterop1::CreateFontFromLOGFONT 方法 (dwrite_3.h)

创建与 LOGFONT 结构指定的属性匹配的字体对象。

语法

HRESULT CreateFontFromLOGFONT(
  [in]           LOGFONTW const        *logFont,
  [in, optional] IDWriteFontCollection *fontCollection,
  [out]          IDWriteFont           **font
);

参数

[in] logFont

类型: LOGFONTW

包含 GDI 兼容字体说明的结构。

[in, optional] fontCollection

类型: IDWriteFontCollection*

要搜索的字体集合。 如果为 NULL,则使用本地系统字体集合。

[out] font

类型: IDWriteFont**

如果成功,则接收新创建的字体对象;如果出错,则接收 NULL。

返回值

类型: HRESULT

如果该方法成功,则返回 S_OK。 否则,将返回 HRESULT 错误代码。

要求

   
目标平台 Windows
标头 dwrite_3.h
Library Dwrite.lib
DLL Dwrite.dll

另请参阅

IDWriteGdiInterop1