PathGradientBrush::GetCenterColor 方法 (gdipluspath.h)
PathGradientBrush::GetCenterColor 方法获取此路径渐变画笔的中心点的颜色。
语法
Status GetCenterColor(
[out] Color *color
);
parameters
[out] color
类型: 颜色*
指向接收中心点颜色的 Color 对象的指针。
返回值
类型: 状态
如果该方法成功,则返回 Ok,这是 Status 枚举的元素。
如果方法失败,它将返回 Status 枚举的其他元素之一。
注解
默认情况下, PathGradientBrush 对象的中心点是画笔边界路径的质心,但您可以通过调用 PathGradientBrush 对象的 PathGradientBrush::SetCenterPoint Methods 方法,将中心点设置为 路径 内部或外部的任何位置。
示例
以下示例创建 一个 PathGradientBrush 对象,并使用它来填充椭圆形。 然后,代码调用 PathGradientBrush 对象的 PathGradientBrush::GetCenterColor 方法以获取中心颜色。
VOID Example_GetCenterColor(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);
// Fill the ellipse with the path gradient brush.
graphics.FillEllipse(&pthGrBrush, 0, 0, 200, 100);
// Obtain information about the path gradient brush.
Color color;
pthGrBrush.GetCenterColor(&color);
// Fill a rectangle with the retrieved color.
SolidBrush solidBrush(color);
graphics.FillRectangle(&solidBrush, 0, 120, 200, 30);
}
要求
最低受支持的客户端 | Windows XP、Windows 2000 Professional [仅限桌面应用] |
最低受支持的服务器 | Windows 2000 Server [仅限桌面应用] |
目标平台 | Windows |
标头 | gdipluspath.h (包括 Gdiplus.h) |
Library | Gdiplus.lib |
DLL | Gdiplus.dll |
另请参阅
PathGradientBrush::GetCenterPoint 方法