GraphicsPath::AddString (constWCHAR*,INT,constFontFamily*,INT,REAL,constPoint&,constStringFormat*) 方法 (gdipluspath.h)

GraphicsPath::AddString 方法将字符串的轮廓添加到此路径。

语法

Status AddString(
  [in]      const WCHAR        *string,
  [in]      INT                length,
  [in]      const FontFamily   *family,
  [in]      INT                style,
  [in]      REAL               emSize,
  [in, ref] const Point &      origin,
  [in]      const StringFormat *format
);

参数

[in] string

类型: const WCHAR*

指向宽字符字符串的指针。

[in] length

类型: INT

指定要显示的字符数的整数。 如果 字符串 参数指向以 NULL 结尾的字符串,则可以将此参数设置为 –1。

[in] family

类型: const FontFamily*

指向 FontFamily 对象的指针,该对象指定字符串的字体系列。

[in] style

类型: INT

指定字样样式的整数。 此值必须是 FontStyle 枚举的元素,或者是应用于其中两个或更多个元素的按位 OR 的结果。 例如, FontStyleBold | FontStyleUnderline | FontStyleStrikeout 将样式设置为三种样式的组合。

[in] emSize

类型: REAL

指定字符串字符的 em 大小的实数(以世界单位为单位)。

[in, ref] origin

类型: const Point

Point 对象的引用,该对象以世界单位指定字符串的位置。

[in] format

类型: const StringFormat*

指向 StringFormat 对象的指针,该对象指定布局信息 (字符串的对齐、剪裁、制表位等) 。

返回值

类型: 状态

如果该方法成功,则返回 Ok,这是 Status 枚举的元素。

如果方法失败,它将返回 Status 枚举的其他元素之一。

注解

请注意,GDI+ 不支持没有 TrueType 轮廓的 PostScript 字体或 OpenType 字体。

示例

以下示例创建 一个 GraphicsPath 对象 路径,将 一个以 NULL 结尾的字符串添加到 path,然后绘制 路径

VOID Example_AddString(HDC hdc)
{
   Graphics graphics(hdc);
   FontFamily fontFamily(L"Times New Roman");
   GraphicsPath path;

   path.AddString(
      L"Hello World", 
      -1,                 // NULL-terminated string
      &fontFamily, 
      FontStyleRegular, 
      48, 
      Point(50, 50),
      NULL);

   Pen pen(Color(255, 255, 0, 0));
   graphics.DrawPath(&pen, &path);
}

要求

   
最低受支持的客户端 Windows XP、Windows 2000 Professional [仅限桌面应用]
最低受支持的服务器 Windows 2000 Server [仅限桌面应用]
目标平台 Windows
标头 gdipluspath.h (包括 Gdiplus.h)
Library Gdiplus.lib
DLL Gdiplus.dll

另请参阅

AddString 方法

使用区域进行剪裁

构造并绘制轨迹

创建路径渐变

字体

FontFamily

FontStyle

GraphicsPath

Point

StringFormat

使用文本和字体