PathGradientBrush::ScaleTransform 方法 (gdipluspath.h)
PathGradientBrush::ScaleTransform 方法使用自身和缩放矩阵的乘积更新此画笔的当前转换矩阵。
语法
Status ScaleTransform(
[in] REAL sx,
[in] REAL sy,
[in] MatrixOrder order
);
parameters
[in] sx
类型: REAL
指定水平比例系数的实数。
[in] sy
类型: REAL
指定垂直比例系数的实数。
[in] order
类型: MatrixOrder
可选。 MatrixOrder 枚举的元素,用于指定乘法的顺序。 MatrixOrderPrepend 指定缩放矩阵位于左侧, MatrixOrderAppend 指定缩放矩阵位于右侧。 默认值为 MatrixOrderPrepend。
返回值
类型: 状态
如果方法成功,则返回 Ok,这是 Status 枚举的元素。
如果 方法失败,它将返回 Status 枚举的其他元素之一。
注解
单个 3 ×3 矩阵可以存储任何序列的仿射转换。 如果有多个 3 ×3 个矩阵,每个矩阵都表示仿射转换,则这些矩阵的乘积是一个表示整个转换序列的 3 ×3 矩阵。 由该产品表示的转换称为复合转换。 例如,假设矩阵 T 表示平移,矩阵 S 表示缩放。 如果矩阵 M 是积 TS,则矩阵 M 表示复合转换:先平移,再缩放。
示例
以下示例基于三角路径创建 PathGradientBrush 对象。 对 PathGradientBrush 对象的 PathGradientBrush::TranslateTransform 和 PathGradientBrush::ScaleTransform 方法的调用将设置画笔转换矩阵的元素,使其表示复合转换:先转换,然后缩放。 该代码使用路径渐变画笔两次绘制矩形:设置转换前一次,设置转换后一次。
VOID Example_ScaleTransform(HDC hdc)
{
Graphics graphics(hdc);
// Create a path gradient brush based on an array of points.
Point pts[] = {Point(0, 0), Point(50, 0), Point(50, 50)};
PathGradientBrush pthGrBrush(pts, 3);
// Fill an area with the path gradient brush (no transformation).
graphics.FillRectangle(&pthGrBrush, 0, 0, 500, 500);
pthGrBrush.TranslateTransform(50.0f, 40.0f); // translate
pthGrBrush.ScaleTransform(3.0f, 2.0f, MatrixOrderAppend); // then scale
// Fill the same area with the transformed path gradient brush.
graphics.FillRectangle(&pthGrBrush, 0, 0, 500, 500);
}
要求
最低受支持的客户端 | Windows XP、Windows 2000 Professional [仅限桌面应用] |
最低受支持的服务器 | Windows 2000 Server [仅限桌面应用] |
目标平台 | Windows |
标头 | gdipluspath.h (包括 Gdiplus.h) |
Library | Gdiplus.lib |
DLL | Gdiplus.dll |
另请参阅
PathGradientBrush::GetTransform
PathGradientBrush::MultiplyTransform
PathGradientBrush::ResetTransform
PathGradientBrush::RotateTransform
PathGradientBrush::SetTransform