Graphics.DrawImage

DrawImage(Image, int, int)

座標ペアで指定された位置に、元の物理サイズを使用して、指定されたイメージを描画します。

public void DrawImage(Image image, int x, int y)
パラメータタイプ説明
imageImage描くイメージ。
xInt32描画されたイメージの左上隅の x 座標。
yInt32描画されたイメージの左上隅の y 座標。

関連項目


DrawImage(Image, float, float)

指定されたImage、元の物理サイズを使用して、指定された場所で.

public void DrawImage(Image image, float x, float y)
パラメータタイプ説明
imageImageImage描く。
xSingle描画されたイメージの左上隅の x 座標。
ySingle描画されたイメージの左上隅の y 座標。

関連項目


DrawImage(Image, Point)

指定された位置に元の物理サイズを使用して、指定された Image を描画します。

public void DrawImage(Image image, Point point)
パラメータタイプ説明
imageImage描くイメージ。
pointPoint描画されたイメージの左上隅の位置を表すポイント構造。

関連項目


DrawImage(Image, Point[])

指定されたЕ:Image指定された場所に、指定された形状とサイズで配置されます。

public void DrawImage(Image image, Point[] destPoints)
パラメータタイプ説明
imageImageImage描く。
destPointsPoint[]3 つの配列Point平行四辺形を定義する構造。

関連項目


DrawImage(Image, PointF)

指定されたImage、元の物理サイズを使用して、指定された場所で.

public void DrawImage(Image image, PointF point)
パラメータタイプ説明
imageImageImage描く。
pointPointFPointF描画された画像の左上隅を表す構造。

関連項目


DrawImage(Image, PointF[])

指定されたImage指定された場所に、指定された形状とサイズで配置されます。

public void DrawImage(Image image, PointF[] destPoints)
パラメータタイプ説明
imageImageImage描く。
destPointsPointF[]3 つの配列PointF平行四辺形を定義する構造。

関連項目


DrawImage(Image, int, int, int, int)

指定されたイメージを指定された位置に指定されたサイズで描画します。

public void DrawImage(Image image, int x, int y, int width, int height)
パラメータタイプ説明
imageImage描くイメージ。
xInt32描画されたイメージの左上隅の x 座標。
yInt32描画されたイメージの左上隅の y 座標。
widthInt32描画イメージの幅。
heightInt32描画イメージの高さ。

関連項目


DrawImage(Image, Rectangle)

指定されたイメージを指定された位置に指定されたサイズで描画します。

public void DrawImage(Image image, Rectangle rect)
パラメータタイプ説明
imageImage描画する Image。
rectRectangle描画されるイメージの位置とサイズを指定する四角形。

関連項目


DrawImage(Image, RectangleF)

指定されたイメージを指定された位置に指定されたサイズで描画します。

public void DrawImage(Image image, RectangleF rect)
パラメータタイプ説明
imageImage描画する Image。
rectRectangleF描画されるイメージの位置とサイズを指定する四角形。

関連項目


DrawImage(Image, float, float, float, float)

指定されたImage 、元の物理サイズを使用して、指定された場所と指定されたサイズで.

public void DrawImage(Image image, float x, float y, float width, float height)
パラメータタイプ説明
imageImageImage描く。
xSingle描画されたイメージの左上隅の x 座標。
ySingle描画されたイメージの左上隅の y 座標。
widthSingle描画される画像の幅。
heightSingle描画イメージの高さ。

関連項目


DrawImage(Image, int, int, Rectangle, GraphicsUnit)

指定した位置に画像の一部を描画します。

public void DrawImage(Image image, int x, int y, Rectangle srcRect, GraphicsUnit srcUnit)
パラメータタイプ説明
imageImageImage描く。
xInt32描画されたイメージの左上隅の x 座標。
yInt32描画されたイメージの左上隅の y 座標。
srcRectRectangleRectangle描画するイメージ オブジェクトの部分を指定する構造体。
srcUnitGraphicsUnitのメンバーGraphicsUnit srcRect パラメータで使用される測定単位を指定する列挙。

関連項目


DrawImage(Image, float, float, RectangleF, GraphicsUnit)

指定した位置に画像の一部を描画します。

public void DrawImage(Image image, float x, float y, RectangleF srcRect, GraphicsUnit srcUnit)
パラメータタイプ説明
imageImageImage描く。
xSingle描画されたイメージの左上隅の x 座標。
ySingle描画されたイメージの左上隅の y 座標。
srcRectRectangleFRectangleF描画するイメージ オブジェクトの部分を指定する構造体。
srcUnitGraphicsUnitのメンバーGraphicsUnit srcRect パラメータで使用される測定単位を指定する列挙。

関連項目


DrawImage(Image, PointF[], RectangleF, GraphicsUnit)

指定された Image の指定された部分を、指定された位置に指定されたサイズで描画します。

public void DrawImage(Image image, PointF[] destPoints, RectangleF srcRect, GraphicsUnit srcUnit)
パラメータタイプ説明
imageImage描くイメージ。
destPointsPointF[]平行四辺形を定義する 3 つの PointF 構造体の配列。
srcRectRectangleF描画するイメージ オブジェクトの部分を指定する RectangleF 構造体。
srcUnitGraphicsUnitによって使用される測定単位を指定する GraphicsUnit 列挙体のメンバーsrcRectパラメータ。

関連項目


DrawImage(Image, Point[], Rectangle, GraphicsUnit)

指定されたオブジェクトの指定された部分を描画しますImage指定された場所に、指定されたサイズで.

public void DrawImage(Image image, Point[] destPoints, Rectangle srcRect, GraphicsUnit srcUnit)
パラメータタイプ説明
imageImageImage描く。
destPointsPoint[]3 つの配列Point平行四辺形を定義する構造。
srcRectRectangleRectangle描画するイメージ オブジェクトの部分を指定する構造体。
srcUnitGraphicsUnitのメンバーGraphicsUnit によって使用される測定単位を指定する列挙srcRectパラメータ。

関連項目


DrawImage(Image, Point[], Rectangle, GraphicsUnit, ImageAttributes)

指定されたオブジェクトの指定された部分を描画しますImage指定された場所に、指定されたサイズで.

public void DrawImage(Image image, Point[] destPoints, Rectangle srcRect, GraphicsUnit srcUnit, 
    ImageAttributes imageAttr)
パラメータタイプ説明
imageImageImage描く。
destPointsPoint[]3 つの配列Point平行四辺形を定義する構造。
srcRectRectangleRectangle描画するイメージ オブジェクトの部分を指定する構造体。
srcUnitGraphicsUnitのメンバーGraphicsUnit によって使用される測定単位を指定する列挙srcRectパラメータ。
imageAttrImageAttributesImageAttributes画像オブジェクトの色変更とガンマ情報を指定します。

関連項目


DrawImage(Image, PointF[], RectangleF, GraphicsUnit, ImageAttributes)

指定された Image の指定された部分を、指定された位置に指定されたサイズで描画します。

public void DrawImage(Image image, PointF[] destPoints, RectangleF srcRect, GraphicsUnit srcUnit, 
    ImageAttributes imageAttr)
パラメータタイプ説明
imageImage描くイメージ。
destPointsPointF[]平行四辺形を定義する 3 つの PointF 構造体の配列。
srcRectRectangleF描画するイメージ オブジェクトの部分を指定する RectangleF 構造体。
srcUnitGraphicsUnitによって使用される測定単位を指定する GraphicsUnit 列挙体のメンバーsrcRectパラメータ。
imageAttrImageAttributesイメージ オブジェクトの色変更とガンマ情報を指定する ImageAttributes。

関連項目


DrawImage(Image, Rectangle, Rectangle, GraphicsUnit)

指定された Image の指定された部分を、指定された位置に指定されたサイズで描画します。

public void DrawImage(Image image, Rectangle destRect, Rectangle srcRect, GraphicsUnit srcUnit)
パラメータタイプ説明
imageImage描くイメージ。
destRectRectangle描画されたイメージの位置とサイズを指定する Rectangle 構造体。 イメージは、四角形に合わせてスケーリングされます。
srcRectRectangle描画するイメージ オブジェクトの部分を指定する Rectangle 構造体。
srcUnitGraphicsUnitによって使用される測定単位 を指定するGraphicsUnit列挙体のメンバーsrcRectパラメータ。

関連項目


DrawImage(Image, Rectangle, int, int, int, int, GraphicsUnit, ImageAttributes)

指定された Image の指定された部分を、指定された位置に指定されたサイズで描画します。

public void DrawImage(Image image, Rectangle destRect, int srcX, int srcY, int srcWidth, 
    int srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttr)
パラメータタイプ説明
imageImage描くイメージ。
destRectRectangle描画されたイメージの位置とサイズを指定する Rectangle 構造体。 イメージは、四角形に合わせてスケーリングされます。
srcXInt32描画するソース イメージの部分の左上隅の x 座標。
srcYInt32描画するソース イメージの部分の左上隅の y 座標。
srcWidthInt32描画するソース イメージの部分の幅。
srcHeightInt32描画するソース イメージの部分の高さ。
srcUnitGraphicsUnitソース四角形を決定するために使用される測定単位 を指定するGraphicsUnit列挙体のメンバー。
imageAttrImageAttributesイメージ オブジェクトの色変更とガンマ情報を指定する ImageAttributes。

関連項目


DrawImage(Image, RectangleF, RectangleF, GraphicsUnit)

指定された Image の指定された部分を、指定された位置に指定されたサイズで描画します。

public void DrawImage(Image image, RectangleF destRect, RectangleF srcRect, GraphicsUnit srcUnit)
パラメータタイプ説明
imageImage描くイメージ。
destRectRectangleF描画されたイメージの位置とサイズを指定する RectangleF 構造体。 イメージは四角形に合わせてスケーリングされます。
srcRectRectangleF描画するイメージ オブジェクトの部分を指定する RectangleF 構造体。
srcUnitGraphicsUnitによって使用される測定単位 を指定するGraphicsUnit列挙体のメンバーsrcRectパラメータ。

関連項目


DrawImage(Image, Rectangle, int, int, int, int, GraphicsUnit)

指定されたオブジェクトの指定された部分を描画しますImage指定された場所に、指定されたサイズで.

public void DrawImage(Image image, Rectangle destRect, int srcX, int srcY, int srcWidth, 
    int srcHeight, GraphicsUnit srcUnit)
パラメータタイプ説明
imageImageImage描く。
destRectRectangleRectangle描画イメージの位置とサイズを指定する構造体。画像は四角形に合わせて拡大/縮小されます。
srcXInt32描画するソース イメージの部分の左上隅の x 座標。
srcYInt32描画するソース イメージの部分の左上隅の y 座標。
srcWidthInt32描画するソース イメージの部分の幅。
srcHeightInt32ソース画像の描画部分の高さ
srcUnitGraphicsUnitのメンバーGraphicsUnitソース四角形を決定するために使用される測定単位を指定する列挙。

関連項目


DrawImage(Image, Rectangle, float, float, float, float, GraphicsUnit)

指定されたオブジェクトの指定された部分を描画しますImage指定された場所に、指定されたサイズで.

public void DrawImage(Image image, Rectangle destRect, float srcX, float srcY, float srcWidth, 
    float srcHeight, GraphicsUnit srcUnit)
パラメータタイプ説明
imageImageImage描く。
destRectRectangleRectangle描画イメージの位置とサイズを指定する構造体。画像は四角形に合わせて拡大/縮小されます。
srcXSingle描画するソース イメージの部分の左上隅の x 座標。
srcYSingle描画するソース イメージの部分の左上隅の y 座標。
srcWidthSingle描画するソース イメージの部分の幅。
srcHeightSingleソース画像の描画部分の高さ
srcUnitGraphicsUnitのメンバーGraphicsUnitソース四角形を決定するために使用される測定単位を指定する列挙。

関連項目


DrawImage(Image, Rectangle, float, float, float, float, GraphicsUnit, ImageAttributes)

指定されたオブジェクトの指定された部分を描画しますImage指定された場所に、指定されたサイズで.

public void DrawImage(Image image, Rectangle destRect, float srcX, float srcY, float srcWidth, 
    float srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttrs)
パラメータタイプ説明
imageImageImage描く。
destRectRectangleRectangle描画イメージの位置とサイズを指定する構造体。画像は四角形に合わせて拡大/縮小されます。
srcXSingle描画するソース イメージの部分の左上隅の x 座標。
srcYSingle描画するソース イメージの部分の左上隅の y 座標。
srcWidthSingle描画するソース イメージの部分の幅。
srcHeightSingleソース画像の描画部分の高さ
srcUnitGraphicsUnitのメンバーGraphicsUnitソース四角形を決定するために使用される測定単位を指定する列挙。
imageAttrsImageAttributesImageAttributes画像オブジェクトの色変更とガンマ情報を指定します。

関連項目