다음을 통해 공유


Graphics::D rawBezier(constPen*,INT,INT,INT,INT,INT,INT, INT) 메서드(gdiplusgraphics.h)

Graphics::D rawBezier 메서드는 베지어 스플라인을 그립니다.

통사론

Status DrawBezier(
  [in] const Pen *pen,
  [in] INT       x1,
  [in] INT       y1,
  [in] INT       x2,
  [in] INT       y2,
  [in] INT       x3,
  [in] INT       y3,
  [in] INT       x4,
  [in] INT       y4
);

매개 변수

[in] pen

형식: const *

Bézier 스플라인을 그리는 데 사용되는 펜에 대한 포인터입니다.

[in] x1

형식: INT

Bézier 스플라인의 시작점 x 좌표를 지정하는 정수입니다.

[in] y1

형식: INT

Bézier 스플라인의 시작점 y 좌표를 지정하는 정수입니다.

[in] x2

형식: INT

Bézier 스플라인의 첫 번째 제어점 x 좌표를 지정하는 정수입니다.

[in] y2

형식: INT

Bézier 스플라인의 첫 번째 제어점의 y 좌표를 지정하는 정수입니다.

[in] x3

형식: INT

Bézier 스플라인의 두 번째 제어점 x 좌표를 지정하는 정수입니다.

[in] y3

형식: INT

Bézier 스플라인의 두 번째 제어점 y 좌표를 지정하는 정수입니다.

[in] x4

형식: INT

Bézier 스플라인 끝점의 x 좌표를 지정하는 정수입니다.

[in] y4

형식: INT

Bézier 스플라인 끝점의 y 좌표를 지정하는 정수입니다.

반환 값

형식: 상태

메서드가 성공하면 상태 열거형의 요소인 Ok를 반환합니다.

메서드가 실패하면 상태 열거형의 다른 요소 중 하나를 반환합니다.

발언

Bézier 스플라인은 제어점을 통과하지 않습니다. 제어점은 자석 역할을 하며, 특정 방향으로 곡선을 당겨 베지어 스플라인이 구부러지는 방식에 영향을 줍니다.

예제

다음 예제에서는 베지어 곡선을 그립니다.


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

   // Set up the pen and curve points.
   Pen greenPen(Color(255, 0, 255, 0));
   int startPointx = 100;
   int startPointy = 100;
   int ctrlPoint1x = 200;
   int ctrlPoint1y = 10;
   int ctrlPoint2x = 350;
   int ctrlPoint2y = 50;
   int endPointx = 500;
   int endPointy = 100;

   //Draw the curve.
   graphics.DrawBezier(
   &greenPen,
   startPointx,
   startPointy,
   ctrlPoint1x,
   ctrlPoint1y,
   ctrlPoint2x,
   ctrlPoint2y,
   endPointx,
   endPointy);

   //Draw the end points and control points.
   SolidBrush redBrush(Color(255, 255, 0, 0));
   SolidBrush blueBrush(Color(255, 0, 0, 255));
   graphics.FillEllipse(&redBrush, 100 - 5, 100 - 5, 10, 10);
   graphics.FillEllipse(&redBrush, 500 - 5, 100 - 5, 10, 10);
   graphics.FillEllipse(&blueBrush, 200 - 5, 10 - 5, 10, 10);
   graphics.FillEllipse(&blueBrush, 350 - 5, 50 - 5, 10, 10);
}

요구 사항

요구
지원되는 최소 클라이언트 Windows XP, Windows 2000 Professional [데스크톱 앱만 해당]
지원되는 최소 서버 Windows 2000 Server [데스크톱 앱만 해당]
대상 플랫폼 Windows
헤더 gdiplusgraphics.h(Gdiplus.h 포함)
라이브러리 Gdiplus.lib
DLL Gdiplus.dll

참고 항목

베지어 스플라인

DrawBezier

drawBeziers 메서드

그리기 베지어 스플라인

그래픽