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

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

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

void System::Drawing::Graphics::DrawImageUnscaled(const SharedPtr<Image> &image, const Point &point)
ParameterType描述
imageconst 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)
ParameterType描述
imageconst 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)
ParameterType描述
imageconst 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)
ParameterType描述
imageconst SharedPtr<Image>&要绘制的图像
xint绘制图像左上角的 X 坐标
yint绘制图像左上角的 Y 坐标
widthint未使用
heightint未使用

另见