Graphics::FillClosedCurve(constBrush*,constPointF*,INT) 메서드(gdiplusgraphics.h)
Graphics::FillClosedCurve 메서드는 점 배열에서 닫힌 카디널 스플라인을 만들고 브러시를 사용하여 스플라인의 내부를 채웁니다.
구문
Status FillClosedCurve(
const Brush *brush,
const PointF *points,
INT count
);
매개 변수
brush
스플라인의 내부를 그리는 데 사용되는 Brush 개체에 대한 포인터입니다.
points
이 메서드가 닫힌 카디널 스플라인을 만드는 데 사용하는 점 배열에 대한 포인터입니다. 배열의 각 지점은 스플라인의 점입니다.
count
점 배열의 점 수를 지정하는 정수입니다.
반환 값
메서드가 성공하면 Status 열거형의 요소인 확인을 반환합니다.
메서드가 실패하면 Status 열거형의 다른 요소 중 하나를 반환합니다.
설명
예제
다음 예제에서는 닫힌 카디널 스플라인을 채웁니다.
VOID Example_FillClosedCurve3(HDC hdc)
{
Graphics graphics(hdc);
//Create a SolidBrush object.
SolidBrush blackBrush(Color(255, 0, 0, 0));
//Create an array of PointF objects.
PointF point1(100.0f, 100.0f);
PointF point2(200.0f, 50.0f);
PointF point3(250.0f, 200.0f);
PointF point4(50.0f, 150.0f);
PointF points[4] = {point1, point2, point3, point4};
//Fill the curve.
graphics.FillClosedCurve(&blackBrush, points, 4);
}
요구 사항
머리글 | gdiplusgraphics.h |