次の方法で共有


Graphics.DrawImage メソッド (Image, Single, Single, Single, Single)

指定した位置に指定したサイズで、指定した Image オブジェクトを描画します。

Overloads Public Sub DrawImage( _
   ByVal image As Image, _   ByVal x As Single, _   ByVal y As Single, _   ByVal width As Single, _   ByVal height As Single _)
[C#]
public void DrawImage(Imageimage,floatx,floaty,floatwidth,floatheight);
[C++]
public: void DrawImage(Image* image,floatx,floaty,floatwidth,floatheight);
[JScript]
public function DrawImage(
   image : Image,x : float,y : float,width : float,height : float);

パラメータ

  • image
    描画する Image オブジェクト。
  • x
    描画イメージの左上隅の x 座標。
  • y
    描画イメージの左上隅の y 座標。
  • width
    描画イメージの幅。
  • height
    描画イメージの高さ。

戻り値

このメソッドは値を返しません。

解説

xywidthheight の各パラメータで定義される四角形によって、描画イメージの位置とサイズが決まります。

使用例

[Visual Basic, C#] 次の例は、Windows フォームでの使用を意図してデザインされており、 Paint イベント ハンドラのパラメータである PaintEventArgs e が必要です。このコードは次のアクションを実行します。

  • この例が保存されているフォルダの JPEG ファイル SampImag.jpg からイメージを作成します。
  • イメージを描画するための四角形の位置とサイズを作成します。
  • 画面にイメージを描画します。

[Visual Basic, C#] 四角形の位置によって画面上のイメージの位置が決まり、元のイメージのサイズと四角形のサイズによって描画イメージのスケーリングが決まります。

 
Public Sub DrawImage4Float(e As PaintEventArgs)
' Create image.
Dim newImage As Image = Image.FromFile("SampImag.jpg")
' Create coordinates for upper-left corner
' of image and for size of image.
Dim x As Single = 100F
Dim y As Single = 100F
Dim width As Single = 450F
Dim height As Single = 150F
' Draw image to screen.
e.Graphics.DrawImage(newImage, x, y, width, height)
End Sub
        
[C#] 
public void DrawImage4Float(PaintEventArgs e)
{
// Create image.
Image newImage = Image.FromFile("SampImag.jpg");
// Create coordinates for upper-left corner.
// of image and for size of image.
float x = 100.0F;
float y = 100.0F;
float width = 450.0F;
float height = 150.0F;
// Draw image to screen.
e.Graphics.DrawImage(newImage, x, y, width, height);
}
        

[C++, JScript] C++ および JScript のサンプルはありません。Visual Basic および C# のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

参照

Graphics クラス | Graphics メンバ | System.Drawing 名前空間 | Graphics.DrawImage オーバーロードの一覧