다음을 통해 공유


PathGradientBrush::SetBlend 메서드(gdipluspath.h)

PathGradientBrush::SetBlend 메서드는 이 경로 그라데이션 브러시의 혼합 요소와 혼합 위치를 설정합니다.

구문

Status SetBlend(
  [in] const REAL *blendFactors,
  [in] const REAL *blendPositions,
  [in] INT        count
);

매개 변수

[in] blendFactors

형식: REAL*

혼합 요소 배열에 대한 포인터입니다. 배열의 각 숫자는 0부터 1까지의 범위에 있어야 합니다.

[in] blendPositions

형식: REAL*

혼합 위치 배열에 대한 포인터입니다. 배열의 각 숫자는 0부터 1까지의 범위에 있어야 합니다.

[in] count

형식: INT

blendFactors 배열의 요소 수를 지정하는 정수입니다. blendPositions 배열의 요소 수와 동일합니다.

반환 값

형식: 상태

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

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

설명

PathGradientBrush 개체에는 경계 경로와 중심점이 있습니다. 경로 그라데이션 브러시로 영역을 채우면 경계 경로에서 가운데 지점으로 이동하면 색이 점차 바뀝니다. 기본적으로 색은 거리와 선형적으로 관련되지만 PathGradientBrush::SetBlend 메서드를 호출하여 색과 거리 간의 관계를 사용자 지정할 수 있습니다.

예제

다음 예제에서는 줄임표를 기반으로 PathGradientBrush 개체를 만듭니다. 이 코드는 PathGradientBrush 개체의 PathGradientBrush::SetBlend 메서드를 호출하여 브러시에 대한 혼합 요소 및 혼합 위치 집합을 설정합니다. 그런 다음, 코드는 경로 그라데이션 브러시를 사용하여 타원을 채웁니다.

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

   // Create a path that consists of a single ellipse.
   GraphicsPath path;
   path.AddEllipse(0, 0, 200, 100);

   // Use the path to construct a brush.
   PathGradientBrush pthGrBrush(&path);

   // Set the color at the center of the path to blue.
   pthGrBrush.SetCenterColor(Color(255, 0, 0, 255));

   // Set the color along the entire boundary of the path to aqua.
   Color colors[] = {Color(255, 0, 255, 255)};
   INT count = 1;
   pthGrBrush.SetSurroundColors(colors, &count);

   // Set blend factors and positions for the path gradient brush.
   REAL fac[] = {
      0.0f, 
      0.4f,     // 40 percent of the way from aqua to blue
      0.8f,     // 80 percent of the way from aqua to blue
      1.0f};

   REAL pos[] = {
      0.0f, 
      0.3f,   // 30 percent of the way from the boundary to the center
      0.7f,   // 70 percent of the way from the boundary to the center
      1.0f};

   pthGrBrush.SetBlend(fac, pos, 4);

   // Fill the ellipse with the path gradient brush.
   graphics.FillEllipse(&pthGrBrush, 0, 0, 200, 100);  
}

요구 사항

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

참고 항목

브러시 및 채워진 도형

색상

경로 그라데이션 만들기

도형에 색 그라데이션 채우기

Graphicspath

PathGradientBrush

PathGradientBrush::GetBlend

PathGradientBrush::GetBlendCount