PathGradientBrush::GetFocusScales 方法 (gdipluspath.h)

PathGradientBrush::GetFocusScales 方法获取此路径渐变画笔的焦点比例。

语法

Status GetFocusScales(
  [out] REAL *xScale,
  [out] REAL *yScale
);

parameters

[out] xScale

类型: REAL*

指向接收 x 焦点刻度值的 REAL 的指针。

[out] yScale

类型: REAL*

指向接收 y 焦点刻度值的 REAL 的指针。

返回值

类型: 状态

如果该方法成功,则返回 Ok,这是 Status 枚举的元素。

如果方法失败,它将返回 Status 枚举的其他元素之一。

注解

默认情况下,路径渐变的中心颜色位于中心点。 通过调用 PathGradientBrush::SetFocusScales,可以指定中心颜色应沿围绕中心点的路径显示。 例如,假设边界路径是一个三角形,中心点位于该三角形的质心处。 此外,假设边界颜色为红色,中心颜色为蓝色。 如果将焦点比例设置为 (0.2、0.2) ,则沿围绕中心点的小三角形边界的颜色为蓝色。 该小三角形是main边界路径,在 x 方向缩放为 0.2,在 y 方向按 0.2 因子缩放。 使用路径渐变画笔进行绘制时,从大三角形的边界移动到小三角形的边界时,颜色将从红色逐渐变为蓝色。 小三角形内的区域将填充蓝色。

示例

以下示例基于三角形路径创建 PathGradientBrush 对象。 该代码将路径渐变画笔的焦点比例设置为 (0.2、0.2) 然后使用路径渐变画笔填充包含三角路径的区域。 最后,代码调用 PathGradientBrush 对象的 PathGradientBrush::GetFocusScales 方法以获取 x 焦点刻度和 y 焦点刻度的值。

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

   Point points[] = {Point(100, 0), Point(200, 200), Point(0, 200)};

   // No GraphicsPath object is created. The PathGradientBrush
   // object is constructed directly from the array of points.
   PathGradientBrush pthGrBrush(points, 3);

   Color colors[] = {
      Color(255, 255, 0, 0),    // red
      Color(255, 0, 0, 255)};   // blue

   REAL relativePositions[] = {
      0.0f,    // red at the boundary of the outer triangle
      1.0f};   // blue at the boundary of the inner triangle

   pthGrBrush.SetInterpolationColors(colors, relativePositions, 2);

   // The inner triangle is formed by scaling the outer triangle
   // about its centroid. The scaling factor is 0.2 in both
   // the x and y directions.
   pthGrBrush.SetFocusScales(0.2f, 0.2f);

   // Fill a rectangle that is larger than the triangle
   // specified in the Point array. The portion of the
   // rectangle outside the triangle will not be painted.
   graphics.FillRectangle(&pthGrBrush, 0, 0, 200, 200);

   // Obtain information about the path gradient brush.
   REAL xScale = 0.0f;
   REAL yScale = 0.0f;
   pthGrBrush.GetFocusScales(&xScale, &yScale);

   // The value of xScale is now 0.2.
   // The value of yScale is now 0.2. 
}

要求

   
最低受支持的客户端 Windows XP、Windows 2000 Professional [仅限桌面应用]
最低受支持的服务器 Windows 2000 Server [仅限桌面应用]
目标平台 Windows
标头 gdipluspath.h (包括 Gdiplus.h)
Library Gdiplus.lib
DLL Gdiplus.dll

另请参阅

画笔和填充形状

使用颜色渐变填充形状

GraphicsPath

PathGradientBrush

PathGradientBrush::SetFocusScales