System::Drawing::Graphics::DrawImageUnscaled 方法

Graphics::DrawImageUnscaled(const SharedPtr<Image>&, const Point&) method

在指定位置以原始物理尺寸绘制指定的图像。

void System::Drawing::Graphics::DrawImageUnscaled(const SharedPtr<Image> &image, const Point &point)
参数类型描述
图像const SharedPtr<Image>&要绘制的图像
pointconst Point&指定已绘制图像左上角的 Point 结构。

另见

Graphics::DrawImageUnscaled(const SharedPtr<Image>&, const Rectangle&) method

在指定位置以原始物理尺寸绘制指定的图像。

void System::Drawing::Graphics::DrawImageUnscaled(const SharedPtr<Image> &image, const Rectangle &rect)
参数类型描述
图像const SharedPtr<Image>&要绘制的图像
rectconst Rectangle&指定已绘制图像左上角的矩形。矩形的 X 和 Y 属性指定左上角。宽度和高度值将被忽略。

另见

Graphics::DrawImageUnscaled(const SharedPtr<Image>&, int, int) method

在指定位置以原始物理尺寸绘制指定的图像。

void System::Drawing::Graphics::DrawImageUnscaled(const SharedPtr<Image> &image, int x, int y)
参数类型描述
图像const SharedPtr<Image>&要绘制的图像
xint已绘制图像左上角的 X 坐标
yint已绘制图像左上角的 Y 坐标

另见

Graphics::DrawImageUnscaled(const SharedPtr<Image>&, int, int, int, int) method

在指定位置以原始物理尺寸绘制指定的图像。

void System::Drawing::Graphics::DrawImageUnscaled(const SharedPtr<Image> &image, int x, int y, int width, int height)
参数类型描述
图像const SharedPtr<Image>&要绘制的图像
xint已绘制图像左上角的 X 坐标
yint已绘制图像左上角的 Y 坐标
widthint未使用
heightint未使用

另见