Pen::SetTransform 方法 (gdipluspen.h)
Pen::SetTransform 方法设置此 Pen 对象的世界转换。
语法
Status SetTransform(
[in] const Matrix *matrix
);
parameters
[in] matrix
类型: const Matrix*
指向指定世界转换的 Matrix 对象的指针。
返回值
类型: 状态
如果方法成功,则返回 Ok,这是 Status 枚举的元素。
如果 方法失败,它将返回 Status 枚举的其他元素之一。
注解
此方法忽略 Matrix 对象的转换部分。
示例
以下示例创建一个比例矩阵和 一个 Pen 对象,然后绘制一个矩形。 然后,代码按矩阵缩放笔并绘制第二个矩形。
VOID Example_SetTransform(HDC hdc)
{
Graphics graphics(hdc);
Matrix matrix(20, 0, 0, 10, 0, 0); // scale
// Create a pen, and use it to draw a rectangle.
Pen pen(Color(255, 0, 0, 255), 2);
graphics.DrawRectangle(&pen, 10, 50, 150, 100);
// Scale the pen width by a factor of 20 in the horizontal
// direction and a factor of 10 in the vertical direction.
pen.SetTransform(&matrix);
// Draw a rectangle with the transformed pen.
graphics.DrawRectangle(&pen, 200, 50, 150, 100);
}
要求
最低受支持的客户端 | Windows XP、Windows 2000 Professional [仅限桌面应用] |
最低受支持的服务器 | Windows 2000 Server [仅限桌面应用] |
目标平台 | Windows |
标头 | gdipluspen.h (包括 Gdiplus.h) |
Library | Gdiplus.lib |
DLL | Gdiplus.dll |