GraphicsPathIterator::GetCount 方法 (gdipluspath.h)
GraphicsPathIterator::GetCount 方法返回路径中的数据点数。
语法
INT GetCount();
返回值
类型: INT
此方法返回路径中的数据点数。
注解
此 GraphicsPathIterator 对象与 GraphicsPath 对象相关联。 该 GraphicsPath 对象具有点数组和类型数组。 类型数组中的每个元素都是一个字节,用于指定点类型和点数组中相应元素的一组标志。 PathPointType 枚举中列出了可能的点类型和标志。
示例
以下示例创建 一个 GraphicsPath 对象,然后将一个矩形和一个椭圆添加到路径。 代码将该 GraphicsPath 对象的地址传递给 GraphicsPathIterator 构造函数,以创建与路径关联的迭代器。 代码调用迭代器的 GraphicsPathIterator::GetCount 方法来确定路径中的数据点数。 调用 GraphicsPathIterator::Enumerate 从路径中检索两个数组:一个用于保存路径的数据点,一个用于保存路径的点类型。 检索数据点后,代码将调用 对象的 FillEllipse 方法以绘制每个数据点。
VOID GetCountExample(HDC hdc)
{
Graphics graphics(hdc);
// Create a path that has a rectangle and an ellipse.
GraphicsPath path;
path.AddRectangle(Rect(20, 20, 60, 30));
path.AddEllipse(Rect(20, 70, 100, 50));
// Create an iterator, and associate it with the path.
GraphicsPathIterator iterator(&path);
// Get the number of data points in the path.
INT count = iterator.GetCount();
// Get the data points.
PointF* points = new PointF[count];
BYTE* types = new BYTE[count];
iterator.Enumerate(points, types, count);
// Draw the data points.
SolidBrush brush(Color(255, 255, 0, 0));
for(INT j = 0; j < count; ++j)
graphics.FillEllipse(
&brush,
points[j].X - 3.0f,
points[j].Y - 3.0f,
6.0f,
6.0f);
delete points;
delete types;
}
要求
要求 | 值 |
---|---|
最低受支持的客户端 | Windows XP、Windows 2000 Professional [仅限桌面应用] |
最低受支持的服务器 | Windows 2000 Server [仅限桌面应用] |
目标平台 | Windows |
标头 | gdipluspath.h (包括 Gdiplus.h) |
Library | Gdiplus.lib |
DLL | Gdiplus.dll |
另请参阅
GraphicsPathIterator::CopyData