Graphics::D rawPolygon(constPen*,constPointF*,INT) 메서드(gdiplusgraphics.h)
Graphics::D rawPolygon 메서드는 다각형을 그립니다.
구문
Status DrawPolygon(
const Pen *pen,
const PointF *points,
INT count
);
매개 변수
pen
다각형을 그리는 데 사용되는 펜에 대한 포인터입니다.
points
다각형의 꼭짓점을 지정하는 PointF 개체의 배열에 대한 포인터입니다.
count
점 배열의 요소 수를 지정하는 정수입니다.
반환 값
메서드가 성공하면 Status 열거형의 요소인 Ok를 반환합니다.
메서드가 실패하면 Status 열거형의 다른 요소 중 하나를 반환합니다.
설명
점 배열의 첫 번째 좌표와 마지막 좌표가 동일하지 않으면 점 배열 사이에 선이 그려져 다각형을 닫습니다.
예제
다음 예제에서는 점 배열로 정의된 다각형을 그립니다.
VOID Example_DrawPolygon2(HDC hdc)
{
Graphics graphics(hdc);
// Create a Pen object.
Pen blackPen(Color(255, 0, 0, 0), 3);
// Create an array of PointF objects that define the polygon.
PointF point1(100.0f, 100.0f);
PointF point2(200.0f, 130.0f);
PointF point3(150.0f, 200.0f);
PointF point4(50.0f, 200.0f);
PointF point5(0.0f, 130.0f);
PointF points[5] = {point1, point2, point3, point4, point5};
PointF* pPoints = points;
// Draw the polygon.
graphics.DrawPolygon(&blackPen, pPoints, 5);
}
요구 사항
머리글 | gdiplusgraphics.h |