< GLBasic Programming < BASIC

To import a picture, place it in the program folder and just copy and paste it in the window:

CLEARSCREEN RGB(255, 0, 0) //The color of the background will be red
LOADSPRITE "../GLBasic_Logo.png", 0 //First the name of the file, then the ID
PRINT "Look at this:", 100, 100 //Print some text on x100, y100
DRAWSPRITE 0, 100, 200 //Draw the sprite with ID 0 on x100, y200
SHOWSCREEN //Show the screen
KEYWAIT //Wait for a key to be pressed
END //End the program

It gives:

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.