1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-10 08:55:12 +00:00
QB64-PE/tests/compile_tests/image/test.bas
2022-05-12 00:21:02 -04:00

9 lines
120 B
QBasic

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