One of the easiest uses of _PutImage is for a background of your screen.
Here I am using the qb64pe.png logo image you can find in your QB64pe Source Folder:
Here I am using the qb64pe.png logo image you can find in your QB64pe Source Folder:
Code: (Select All)
Screen _NewImage(800, 600, 32) ' screen width, height, 32 is _RGBA colors
_Delay .2
Logo& = _LoadImage("qb64pe.png")
' fill entire screen with stretched out logo
_PutImage , Logo&, 0
b = b + ...