PathGradientBrush::TranslateTransform 方法 (gdipluspath.h)
PathGradientBrush::TranslateTransform 方法使用自身和转换矩阵的乘积更新此画笔的当前转换矩阵。
语法
Status TranslateTransform(
[in] REAL dx,
[in] REAL dy,
[in] MatrixOrder order
);
参数
[in] dx
类型: REAL
指定平移的水平分量的实数。
[in] dy
类型: REAL
指定转换的垂直分量的实数。
[in] order
类型: MatrixOrder
可选。 MatrixOrder 枚举的元素,用于指定乘法的顺序。 MatrixOrderPrepend 指定转换矩阵位于左侧, MatrixOrderAppend 指定转换矩阵位于右侧。 默认值为 MatrixOrderPrepend。
返回值
类型: 状态
如果方法成功,则返回 Ok,这是 Status 枚举的元素。
如果 方法失败,它将返回 Status 枚举的其他元素之一。
注解
单个 3 ×3 矩阵可以存储任何序列的仿射转换。 如果有多个 3 ×3 个矩阵,每个矩阵都表示仿射转换,则这些矩阵的乘积是一个表示整个转换序列的 3 ×3 矩阵。 由该产品表示的转换称为复合转换。 例如,假设矩阵 S 表示缩放,矩阵 T 表示平移。 如果矩阵 M 是产品 ST,则矩阵 M 表示复合转换:先缩放,再平移。
示例
以下示例基于三角路径创建 PathGradientBrush 对象。 对 PathGradientBrush 对象的 PathGradientBrush::ScaleTransform 和 PathGradientBrush::TranslateTransform 方法的调用将设置画笔转换矩阵的元素,使其表示复合转换:先缩放,再翻译。 该代码使用路径渐变画笔两次绘制矩形:设置转换前一次,设置转换后一次。
VOID Example_TranslateTrans(HDC hdc)
{
Graphics graphics(hdc);
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.ScaleTransform(3.0f, 1.0f);
pthGrBrush.TranslateTransform(100.0f, 50.0f, MatrixOrderAppend);
// 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::ScaleTransform