Graphics.DrawImageUnscaled 方法

定义

使用其原始物理大小在坐标对指定的位置绘制指定的图像。

重载

DrawImageUnscaled(Image, Int32, Int32)

使用其原始物理大小在坐标对指定的位置绘制指定的图像。

DrawImageUnscaled(Image, Int32, Int32, Int32, Int32)

使用指定位置的原始物理大小绘制指定图像。

DrawImageUnscaled(Image, Point)

使用指定位置的原始物理大小绘制指定图像。

DrawImageUnscaled(Image, Rectangle)

使用指定位置的原始物理大小绘制指定图像。

DrawImageUnscaled(Image, Int32, Int32)

Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs

使用其原始物理大小在坐标对指定的位置绘制指定的图像。

public:
 void DrawImageUnscaled(System::Drawing::Image ^ image, int x, int y);
public void DrawImageUnscaled (System.Drawing.Image image, int x, int y);
member this.DrawImageUnscaled : System.Drawing.Image * int * int -> unit
Public Sub DrawImageUnscaled (image As Image, x As Integer, y As Integer)

参数

image
Image

要绘制的 Image

x
Int32

绘制图像左上角的 x 坐标。

y
Int32

绘制图像左上角的 y 坐标。

例外

image null

示例

下面的代码示例设计用于 Windows 窗体,它需要 PaintEventArgse,这是 Paint 事件处理程序的参数。 该代码执行以下操作:

  • 在示例的文件夹中,从 JPEG 文件创建映像,SampImag.jpg。

  • 创建一个点,用于绘制图像的左上角。

  • 使用其物理大小绘制整个图像。

public:
   void DrawImageUnscaledInt( PaintEventArgs^ e )
   {
      // Create image.
      Image^ newImage = Image::FromFile( "SampImag.jpg" );

      // Create coordinates for upper-left corner of image.
      int x = 100;
      int y = 100;

      // Draw image to screen.
      e->Graphics->DrawImageUnscaled( newImage, x, y );
   }
public void DrawImageUnscaledInt(PaintEventArgs e)
{
             
    // Create image.
    Image newImage = Image.FromFile("SampImag.jpg");
             
    // Create coordinates for upper-left corner of image.
    int x = 100;
    int y = 100;
             
    // Draw image to screen.
    e.Graphics.DrawImageUnscaled(newImage, x, y);
}
Public Sub DrawImageUnscaledInt(ByVal e As PaintEventArgs)

    ' Create image.
    Dim newImage As Image = Image.FromFile("SampImag.jpg")

    ' Create coordinates for upper-left corner of image.
    Dim x As Integer = 100
    Dim y As Integer = 100

    ' Draw image to screen.
    e.Graphics.DrawImageUnscaled(newImage, x, y)
End Sub

注解

Image 存储像素宽度的值和水平分辨率的值(每英寸点数)。 图像的物理宽度(以英寸为单位)是像素宽度除以水平分辨率。 例如,像素宽度为 216 的图像,水平分辨率为 72 点/英寸,物理宽度为 3 英寸。 类似的备注适用于像素高度和物理高度。

DrawImageUnscaled 方法使用其物理大小绘制图像,因此无论显示设备的分辨率(每英寸点数)如何,图像都将具有正确的大小(英寸)。 例如,假设图像的像素宽度为 216,水平分辨率为每英寸 72 点。 如果调用 DrawImageUnscaled 在分辨率为 96 点/英寸的设备上绘制该图像,则呈现的图像的像素宽度将为 (216/72)*96 = 288。

适用于

DrawImageUnscaled(Image, Int32, Int32, Int32, Int32)

Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs

使用指定位置的原始物理大小绘制指定图像。

public:
 void DrawImageUnscaled(System::Drawing::Image ^ image, int x, int y, int width, int height);
public void DrawImageUnscaled (System.Drawing.Image image, int x, int y, int width, int height);
member this.DrawImageUnscaled : System.Drawing.Image * int * int * int * int -> unit
Public Sub DrawImageUnscaled (image As Image, x As Integer, y As Integer, width As Integer, height As Integer)

参数

image
Image

要绘制的 Image

x
Int32

绘制图像左上角的 x 坐标。

y
Int32

绘制图像左上角的 y 坐标。

width
Int32

未使用。

height
Int32

未使用。

例外

image null

注解

Image 存储像素宽度的值和水平分辨率的值(每英寸点数)。 图像的物理宽度(以英寸为单位)是像素宽度除以水平分辨率。 例如,像素宽度为 216 的图像,水平分辨率为 72 点/英寸,物理宽度为 3 英寸。 类似的备注适用于像素高度和物理高度。

DrawImageUnscaled 方法使用其物理大小绘制图像,因此无论显示设备的分辨率(每英寸点数)如何,图像都将具有正确的大小(英寸)。 例如,假设图像的像素宽度为 216,水平分辨率为每英寸 72 点。 如果调用 DrawImageUnscaled 在分辨率为 96 点/英寸的设备上绘制该图像,则呈现的图像的像素宽度将为 (216/72)*96 = 288。

适用于

DrawImageUnscaled(Image, Point)

Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs

使用指定位置的原始物理大小绘制指定图像。

public:
 void DrawImageUnscaled(System::Drawing::Image ^ image, System::Drawing::Point point);
public void DrawImageUnscaled (System.Drawing.Image image, System.Drawing.Point point);
member this.DrawImageUnscaled : System.Drawing.Image * System.Drawing.Point -> unit
Public Sub DrawImageUnscaled (image As Image, point As Point)

参数

image
Image

要绘制的 Image

point
Point

Point 指定绘制图像左上角的结构。

例外

image null

示例

下面的代码示例设计用于 Windows 窗体,它需要 PaintEventArgse,这是 Paint 事件处理程序的参数。 该代码执行以下操作:

  • 从示例文件夹中 SampImag.jpg JPEG 文件创建映像。

  • 创建一个点,用于绘制图像的左上角。

  • 使用其物理大小绘制整个图像。

public:
   void DrawImageUnscaledPoint( PaintEventArgs^ e )
   {
      // Create image.
      Image^ newImage = Image::FromFile( "SampImag.jpg" );

      // Create point for upper-left corner of image.
      Point ulCorner = Point(100,100);

      // Draw image to screen.
      e->Graphics->DrawImageUnscaled( newImage, ulCorner );
   }
public void DrawImageUnscaledPoint(PaintEventArgs e)
{
             
    // Create image.
    Image newImage = Image.FromFile("SampImag.jpg");
             
    // Create point for upper-left corner of image.
    Point ulCorner = new Point(100, 100);
             
    // Draw image to screen.
    e.Graphics.DrawImageUnscaled(newImage, ulCorner);
}
Public Sub DrawImageUnscaledPoint(ByVal e As PaintEventArgs)

    ' Create image.
    Dim newImage As Image = Image.FromFile("SampImag.jpg")

    ' Create point for upper-left corner of image.
    Dim ulCorner As New Point(100, 100)

    ' Draw image to screen.
    e.Graphics.DrawImageUnscaled(newImage, ulCorner)
End Sub

注解

Image 存储像素宽度的值和水平分辨率的值(每英寸点数)。 图像的物理宽度(以英寸为单位)是像素宽度除以水平分辨率。 例如,像素宽度为 216 的图像,水平分辨率为 72 点/英寸,物理宽度为 3 英寸。 类似的备注适用于像素高度和物理高度。

DrawImageUnscaled 方法使用其物理大小绘制图像,因此无论显示设备的分辨率(每英寸点数)如何,图像都将具有正确的大小(英寸)。 例如,假设图像的像素宽度为 216,水平分辨率为每英寸 72 点。 如果调用 DrawImageUnscaled 在分辨率为 96 点/英寸的设备上绘制该图像,则呈现的图像的像素宽度将为 (216/72)*96 = 288。

适用于

DrawImageUnscaled(Image, Rectangle)

Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs
Source:
Graphics.cs

使用指定位置的原始物理大小绘制指定图像。

public:
 void DrawImageUnscaled(System::Drawing::Image ^ image, System::Drawing::Rectangle rect);
public void DrawImageUnscaled (System.Drawing.Image image, System.Drawing.Rectangle rect);
member this.DrawImageUnscaled : System.Drawing.Image * System.Drawing.Rectangle -> unit
Public Sub DrawImageUnscaled (image As Image, rect As Rectangle)

参数

image
Image

要绘制的 Image

rect
Rectangle

指定绘制图像左上角的 Rectangle。 矩形的 X 和 Y 属性指定左上角。 忽略 Width 和 Height 属性。

例外

image null

注解

Image 存储像素宽度的值和水平分辨率的值(每英寸点数)。 图像的物理宽度(以英寸为单位)是像素宽度除以水平分辨率。 例如,像素宽度为 216 的图像,水平分辨率为 72 点/英寸,物理宽度为 3 英寸。 类似的备注适用于像素高度和物理高度。

DrawImageUnscaled 方法使用其物理大小绘制图像,因此无论显示设备的分辨率(每英寸点数)如何,图像都将具有正确的大小(英寸)。 例如,假设图像的像素宽度为 216,水平分辨率为每英寸 72 点。 如果调用 DrawImageUnscaled 在分辨率为 96 点/英寸的设备上绘制该图像,则呈现的图像的像素宽度将为 (216/72)*96 = 288。

适用于