OR
I spotted a command in the help file that would do the trick for a hud. You might have to make a separate image for each resolution that you might have to display, but it seems to work pretty good.
if screen width() = 800 then HudFile$ = "Hud_800.jpg"
if screen width() = 1024 then HudFile$ = "Hud_1024.jpg"
myImg = 1: myX = 0: myY = 0
LOAD IMAGE HudFile$, myImg, 1
PASTE IMAGE myImg, myX, myY, 1
The last 1 on the paste image command tells it to make all pixels that are rgb(0,0,0) transparent.
It's a big universe, and they are out there somewhere.