PathGradientBrush::GetBlend 메서드(gdipluspath.h)
PathGradientBrush::GetBlend 메서드는 혼합 요소와 이 경로 그라데이션 브러시에 대해 현재 설정된 해당 혼합 위치를 가져옵니다.
구문
Status GetBlend(
[out] REAL *blendFactors,
[out] REAL *blendPositions,
[in] INT count
);
매개 변수
[out] blendFactors
형식: REAL*
혼합 요소를 수신하는 배열에 대한 포인터입니다.
[out] blendPositions
형식: REAL*
혼합 위치를 받는 배열에 대한 포인터입니다.
[in] count
형식: INT
검색할 혼합 요소 수를 지정하는 정수입니다. PathGradientBrush 개체의 PathGradientBrush::GetBlend 메서드를 호출하기 전에 동일한 PathGradientBrush 개체의 PathGradientBrush::GetBlendCount 메서드를 호출하여 현재 혼합 요소 수를 확인합니다. 검색된 혼합 위치의 수는 검색된 혼합 요소 수와 동일합니다.
반환 값
형식: 상태
메서드가 성공하면 Status 열거형의 요소인 확인을 반환합니다.
메서드가 실패하면 Status 열거형의 다른 요소 중 하나를 반환합니다.
설명
PathGradientBrush 개체에는 경계 경로와 중심점이 있습니다. 경로 그라데이션 브러시로 영역을 채우면 경계 경로에서 가운데 지점으로 이동할 때 색이 점차 변경됩니다. 기본적으로 색은 거리와 선형적으로 관련되지만 PathGradientBrush::SetBlend 메서드를 호출하여 색과 거리 간의 관계를 사용자 지정할 수 있습니다.
예제
다음 예제에서는 PathGradientBrush::SetBlend, PathGradientBrush::GetBlendCount 및 PathGradientBrush::GetBlend를 비롯한 PathGradientBrush 클래스의 여러 메서드를 보여 줍니다. 이 코드는 PathGradientBrush 개체를 만들고 PathGradientBrush::SetBlend 메서드를 호출하여 브러시에 대한 혼합 요소 및 혼합 위치 집합을 설정합니다. 그런 다음, 코드는 PathGradientBrush::GetBlendCount 메서드를 호출하여 혼합 요소 수를 검색합니다. 혼합 요소 수를 검색한 후 코드는 두 개의 버퍼를 할당합니다. 하나는 혼합 요소 배열을 수신하고 다른 하나는 혼합 위치 배열을 수신합니다. 그런 다음, 코드는 PathGradientBrush::GetBlend 메서드를 호출하여 혼합 요소 및 혼합 위치를 검색합니다.
VOID Example_GetBlend(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);
// Obtain information about the path gradient brush.
INT blendCount = pthGrBrush.GetBlendCount();
REAL* factors = new REAL[blendCount];
REAL* positions = new REAL[blendCount];
pthGrBrush.GetBlend(factors, positions, blendCount);
for(INT j = 0; j < blendCount; ++j)
{
// Inspect or use the value in factors[j].
// Inspect or use the value in positions[j].
}
delete [] factors;
delete [] positions;
}
요구 사항
지원되는 최소 클라이언트 | Windows XP, Windows 2000 Professional [데스크톱 앱만 해당] |
지원되는 최소 서버 | Windows 2000 Server[데스크톱 앱만] |
대상 플랫폼 | Windows |
헤더 | gdipluspath.h(Gdiplus.h 포함) |
라이브러리 | Gdiplus.lib |
DLL | Gdiplus.dll |
참고 항목
PathGradientBrush::GetBlendCount
PathGradientBrush::SetCenterColor
PathGradientBrush::SetCenterPoint 메서드