共用方式為


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

Graphics::D rawCurve 方法會繪製基數曲線。

語法

Status DrawCurve(
  [in] const Pen    *pen,
  [in] const PointF *points,
  [in] INT          count,
  [in] INT          offset,
  [in] INT          numberOfSegments,
  [in] REAL         tension
);

參數

[in] pen

類型:const Pen*

用來繪製基底曲線的畫筆指標。

[in] points

類型:const PointF*

指向 pointF 陣列的指標 物件,指定基數曲線通過的座標。

[in] count

類型:INT

整數,指定陣列中 點數

[in] offset

類型:INT

整數,指定 陣列中的專案,指定基數曲線開始的點。

[in] numberOfSegments

類型:INT

整數,指定基數曲線中的線段數。

[in] tension

類型:REAL

實數,指定曲線在基數曲線座標上彎曲得有多緊。

傳回值

類型:狀態

如果方法成功,它會傳回Ok,這是 Status 列舉的元素。

如果方法失敗,它會傳回 Status 列舉的其他元素之一。

言論

線段定義為連接基數曲線中連續兩個點的曲線。 每個區段的終點是下一個線段的起點。 numberOfSegments 參數不能大於 count 參數減去 位移 參數加一。

例子

下列範例會繪製基數曲線。

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

   // Define a Pen object and an array of PointF objects.
   Pen greenPen(Color::Green, 3);
   PointF point1(100.0f, 100.0f);
   PointF point2(200.0f, 50.0f);
   PointF point3(400.0f, 10.0f);
   PointF point4(500.0f, 100.0f);

   PointF curvePoints[4] = {
   point1,
   point2,
   point3,
   point4};

   PointF* pcurvePoints = curvePoints;

   // Specify offset, number of segments to draw, and tension.
   int offset = 1;
   int segments = 2;
   REAL tension = 1.0f;

   // Draw the curve.
   graphics.DrawCurve(&greenPen, curvePoints, 4, offset, segments, tension);

   //Draw the points in the curve.
   SolidBrush redBrush(Color::Red);
   graphics.FillEllipse(&redBrush, Rect(95, 95, 10, 10));
   graphics.FillEllipse(&redBrush, Rect(195, 45, 10, 10));
   graphics.FillEllipse(&redBrush, Rect(395, 5, 10, 10));
   graphics.FillEllipse(&redBrush, Rect(495, 95, 10, 10));
}

要求

要求 價值
最低支援的用戶端 Windows XP、Windows 2000 Professional [僅限傳統型應用程式]
支援的最低伺服器 Windows 2000 Server [僅限傳統型應用程式]
目標平臺 窗戶
標頭 gdiplusgraphics.h (包括 Gdiplus.h)
連結庫 Gdiplus.lib
DLL Gdiplus.dll

另請參閱

基數曲線

DrawClosedCurve 方法

繪圖基數曲線

圖形

手寫筆