Graphics::D rawImage (Image*,constPoint*,INT) 方法 (gdiplusgraphics.h)
Graphics::D rawImage 方法绘制图像。
语法
Status DrawImage(
[in] Image *image,
[in] const Point *destPoints,
[in] INT count
);
参数
[in] image
类型: 图像*
指向指定源 图像的 Image 对象的指针。
[in] destPoints
类型: const Point*
指向 Point 对象数组的指针,这些对象在平行四边形中指定要在其中绘制图像的区域。
[in] count
类型: INT
指定 destPoints 数组中的元素数的整数。
返回值
类型: 状态
如果该方法成功,则返回 Ok,这是 Status 枚举的元素。
如果该方法失败,则返回 InvalidParameter。
注解
count 参数的值必须等于 3 才能指定平行四边形的三角。 使用第一个和第二个坐标以及第一个和第三个坐标的向量计算平行四边形的第四个角。 缩放图像以适应平行四边形。
示例
以下示例绘制图像。
VOID Example_DrawImage(HDC hdc)
{
Graphics graphics(hdc);
// Create an Image object.
Image image(L"climber.jpg");
// Create an array of Point objects that specify the destination of the image.
Point destPoints[3] = {
Point(30, 30),
Point(250, 50),
Point(175, 120)};
Point* pdestPoints = destPoints;
// Draw the image.
graphics.DrawImage(&image, pdestPoints, 3);
}
下图显示了上述代码的输出。
要求
要求 | 值 |
---|---|
最低受支持的客户端 | Windows XP、Windows 2000 Professional [仅限桌面应用] |
最低受支持的服务器 | Windows 2000 Server [仅限桌面应用] |
目标平台 | Windows |
标头 | gdiplusgraphics.h (包括 Gdiplus.h) |
Library | Gdiplus.lib |
DLL | Gdiplus.dll |