1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-26 06:15:52 +00:00
QB64-PE/tests/compile_tests/image/test.bas

9 lines
120 B
QBasic
Raw Normal View History

$CONSOLE:ONLY
CHDIR _STARTDIR$
l = _LOADIMAGE("./foobar.bmp", 32)
print l; _HEIGHT(l); _WIDTH(l);
_FREEIMAGE l
SYSTEM