DrawImage(x, y, image)The function draws an image at the desired coordinate (x, y). (x, y) should be a coordinate of left upper corner of an image. JPG and PNG images are supported. Transparent PNG images are also supported. An image could be loaded as a resource or downloaded from the internet during runtime using function DownloadFile. In the below example we assume that "pony.png" is located next to your BAS source file, and we load it as a resource. Example:
$Pony = #"pony.png" DrawImage(100, 100, $Pony)This is how result would look like (red coordinates are just for reference):

See also: