Version

DrawImage(Image,Single,Single,Single,Single,Single) Method

Draws an image.
Syntax
'Declaration
 
Public Overloads Sub DrawImage( _
   ByVal image As Image, _
   ByVal x As Single, _
   ByVal y As Single, _
   ByVal width As Single, _
   ByVal height As Single, _
   ByVal alpha As Single _
) 
public void DrawImage( 
   Image image,
   float x,
   float y,
   float width,
   float height,
   float alpha
)

Parameters

image
Image object to draw.
x
X-coordinate of the upper-left corner of the bounding box for the image.
y
Y-coordinate of the upper-left corner of the bounding box for the image.
width
Width of the bounding box for the image.
height
Height of the bounding box for the image.
alpha
Value in the range [0.0F, 1.0F] that specifies the alpha transparency of the image.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also