Graphics::D rawPie (constPen*,INT,INT,INT,INT,REAL,REAL) 方法 (gdiplusgraphics.h)

Graphics::D rawPie 方法绘制饼图。

语法

Status DrawPie(
  [in] const Pen *pen,
  [in] INT       x,
  [in] INT       y,
  [in] INT       width,
  [in] INT       height,
  [in] REAL      startAngle,
  [in] REAL      sweepAngle
);

参数

[in] pen

类型: 常数 *

指向用于绘制饼图的笔的指针。

[in] x

类型: INT

一个整数,指定矩形左上角的 x 坐标,该矩形边框将绘制饼图的椭圆。

[in] y

类型: INT

一个整数,指定矩形左上角的 y 坐标,该矩形边框将绘制饼图的椭圆。

[in] width

类型: INT

整数,指定绘制饼图的椭圆边框的宽度。

[in] height

类型: INT

整数,指定要在其中绘制饼图的椭圆边界的矩形的高度。

[in] startAngle

类型: REAL

指定 x 轴与定义饼图的弧的起点之间的角度(以度为单位)的实数。 正值指定顺时针旋转。

[in] sweepAngle

类型: REAL

实数,指定定义饼图的弧的起点和终点之间的角度(以度为单位)。 正值指定顺时针旋转。

返回值

类型: 状态

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

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

注解

下图显示了在矩形边界的椭圆中绘制的饼图。 此图还显示了椭圆的水平轴以及 startAnglesweepAngle 的方向。

显示带轮廓饼图的椭圆形图;标记了起始角度和扫描角度

示例

以下示例绘制一个饼图。


VOID Example_DrawPie3(HDC hdc)
{
   Graphics graphics(hdc);

   // Create a Pen object.
   Pen blackPen(Color(255, 0, 0, 0), 3);

   // Define the pie.
   int x = 0;
   int y = 0;
   int width = 200;
   int height = 100;
   REAL startAngle = 0.0f;
   REAL sweepAngle = 45.0f;

   // Draw the pie.
   graphics.DrawPie(&blackPen, x, y, width, height, startAngle, sweepAngle);
}

要求

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

另请参阅

FillPie 方法

显卡

打开和关闭曲线

Rect