#include <GUIImage.au3>

$Form = GUICreate("Example",500,500)
_GUIImageStart($Form)
_GUICtrlCreateImage("Basketball.png", 10, 10, 100, 100)
_GUICtrlCreateImage("Basketball.png", 199, 199, 100, 100)
_GUICtrlCreateImage("Basketball.png", 300, 300)
GUISetState()

While True
	Switch GUIGetMsg()
		Case -3
			_GUIImageClose()
			Exit
	EndSwitch
WEnd