PathGradientBrush::SetFocusScales 方法 (gdipluspath.h)

PathGradientBrush::SetFocusScales 方法设置此路径渐变画笔的焦点比例。

语法

Status SetFocusScales(
  [in] REAL xScale,
  [in] REAL yScale
);

参数

[in] xScale

类型: REAL

指定 x 焦点刻度的实数。

[in] yScale

类型: REAL

指定 y 焦点比例的实数。

返回值

类型: 状态

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

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

注解

默认情况下,路径渐变的中心颜色位于中心点。 通过调用 PathGradientBrush::SetFocusScales,可以指定中心颜色应沿围绕中心点的路径显示。 该路径是按 x 方向的 xScale 因子和 y 方向的 yScale 因子缩放的边界路径。 缩放路径内的区域用中心颜色填充。

示例

以下示例基于三角路径创建 PathGradientBrush 对象。 代码调用 PathGradientBrush 对象的 PathGradientBrush::SetFocusScales 方法,将画笔的焦点比例设置为 (0.2, 0.2) 。 然后,代码使用路径渐变画笔绘制包含三角路径的矩形。

VOID Example_SetFocusScales(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); 
}

要求

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

另请参阅

画笔和填充形状

创建路径渐变

使用颜色渐变填充形状

PathGradientBrush

PathGradientBrush::GetFocusScales

PathGradientBrush::SetInterpolationColors