Graphics.DrawImageUnscaled メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
座標ペアで指定された位置に、元の物理サイズを使用して、指定したイメージを描画します。
オーバーロード
DrawImageUnscaled(Image, Int32, Int32) |
座標ペアで指定された位置に、元の物理サイズを使用して、指定したイメージを描画します。 |
DrawImageUnscaled(Image, Int32, Int32, Int32, Int32) |
指定した場所に元の物理サイズを使用して、指定したイメージを描画します。 |
DrawImageUnscaled(Image, Point) |
指定した場所に元の物理サイズを使用して、指定したイメージを描画します。 |
DrawImageUnscaled(Image, Rectangle) |
指定した場所に元の物理サイズを使用して、指定したイメージを描画します。 |
DrawImageUnscaled(Image, Int32, Int32)
- ソース:
- Graphics.cs
- ソース:
- Graphics.cs
- ソース:
- Graphics.cs
- ソース:
- Graphics.cs
- ソース:
- 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)
パラメーター
- x
- Int32
描画されたイメージの左上隅の x 座標。
- y
- Int32
描画されたイメージの左上隅の y 座標。
例外
image
は null
です。
例
次のコード例は Windows フォームで使用できるように設計されており、Paint イベント ハンドラーのパラメーターである PaintEventArgse
が必要です。 このコードは、次のアクションを実行します。
例のフォルダー内の 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 には、ピクセル幅の値と水平解像度の値 (1 インチあたりのドット数) が格納されます。 画像の物理的な幅 (インチ単位) は、ピクセル幅を水平方向の解像度で割った値です。 たとえば、ピクセル幅が 216 で、水平方向の解像度が 72 ドット/インチの画像の物理的な幅は 3 インチです。 同様の注釈は、ピクセルの高さと物理的な高さに適用されます。
DrawImageUnscaled メソッドは物理サイズを使用して画像を描画するため、ディスプレイ デバイスの解像度 (1 インチあたりのドット数) に関係なく、イメージのサイズがインチ単位で正しくなります。 たとえば、画像のピクセル幅が 216 で、水平解像度が 72 ドット/インチとします。 解像度が 96 ドット/インチのデバイスで DrawImageUnscaled を呼び出して描画する場合、レンダリングされるイメージのピクセル幅は (216/72)*96 = 288 になります。
適用対象
DrawImageUnscaled(Image, Int32, Int32, Int32, Int32)
- ソース:
- Graphics.cs
- ソース:
- Graphics.cs
- ソース:
- Graphics.cs
- ソース:
- Graphics.cs
- ソース:
- 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)
パラメーター
- x
- Int32
描画されたイメージの左上隅の x 座標。
- y
- Int32
描画されたイメージの左上隅の y 座標。
- width
- Int32
使用されません。
- height
- Int32
使用されません。
例外
image
は null
です。
注釈
Image には、ピクセル幅の値と水平解像度の値 (1 インチあたりのドット数) が格納されます。 画像の物理的な幅 (インチ単位) は、ピクセル幅を水平方向の解像度で割った値です。 たとえば、ピクセル幅が 216 で、水平方向の解像度が 72 ドット/インチの画像の物理的な幅は 3 インチです。 同様の注釈は、ピクセルの高さと物理的な高さに適用されます。
DrawImageUnscaled メソッドは物理サイズを使用して画像を描画するため、ディスプレイ デバイスの解像度 (1 インチあたりのドット数) に関係なく、イメージのサイズがインチ単位で正しくなります。 たとえば、画像のピクセル幅が 216 で、水平解像度が 72 ドット/インチとします。 解像度が 96 ドット/インチのデバイスで DrawImageUnscaled を呼び出して描画する場合、レンダリングされるイメージのピクセル幅は (216/72)*96 = 288 になります。
適用対象
DrawImageUnscaled(Image, Point)
- ソース:
- Graphics.cs
- ソース:
- Graphics.cs
- ソース:
- Graphics.cs
- ソース:
- Graphics.cs
- ソース:
- 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
は null
です。
例
次のコード例は Windows フォームで使用できるように設計されており、Paint イベント ハンドラーのパラメーターである PaintEventArgse
が必要です。 このコードは、次のアクションを実行します。
例のフォルダーに 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 には、ピクセル幅の値と水平解像度の値 (1 インチあたりのドット数) が格納されます。 画像の物理的な幅 (インチ単位) は、ピクセル幅を水平方向の解像度で割った値です。 たとえば、ピクセル幅が 216 で、水平方向の解像度が 72 ドット/インチの画像の物理的な幅は 3 インチです。 同様の注釈は、ピクセルの高さと物理的な高さに適用されます。
DrawImageUnscaled メソッドは物理サイズを使用して画像を描画するため、ディスプレイ デバイスの解像度 (1 インチあたりのドット数) に関係なく、イメージのサイズがインチ単位で正しくなります。 たとえば、画像のピクセル幅が 216 で、水平解像度が 72 ドット/インチとします。 解像度が 96 ドット/インチのデバイスで DrawImageUnscaled を呼び出して描画する場合、レンダリングされるイメージのピクセル幅は (216/72)*96 = 288 になります。
適用対象
DrawImageUnscaled(Image, Rectangle)
- ソース:
- Graphics.cs
- ソース:
- Graphics.cs
- ソース:
- Graphics.cs
- ソース:
- Graphics.cs
- ソース:
- 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)
パラメーター
- rect
- Rectangle
描画されたイメージの左上隅を指定する Rectangle。 四角形の X プロパティと Y プロパティは、左上隅を指定します。 Width プロパティと Height プロパティは無視されます。
例外
image
は null
です。
注釈
Image には、ピクセル幅の値と水平解像度の値 (1 インチあたりのドット数) が格納されます。 画像の物理的な幅 (インチ単位) は、ピクセル幅を水平方向の解像度で割った値です。 たとえば、ピクセル幅が 216 で、水平方向の解像度が 72 ドット/インチの画像の物理的な幅は 3 インチです。 同様の注釈は、ピクセルの高さと物理的な高さに適用されます。
DrawImageUnscaled メソッドは物理サイズを使用して画像を描画するため、ディスプレイ デバイスの解像度 (1 インチあたりのドット数) に関係なく、イメージのサイズがインチ単位で正しくなります。 たとえば、画像のピクセル幅が 216 で、水平解像度が 72 ドット/インチとします。 解像度が 96 ドット/インチのデバイスで DrawImageUnscaled を呼び出して描画する場合、レンダリングされるイメージのピクセル幅は (216/72)*96 = 288 になります。
適用対象
.NET