LOADGRAPHIC #handle, path$
Description:
Load an image file from the filesystem using path$ and create a graphic object from it. Assign the object to variable name #handle.
Example:
'load an image into memory
filepath$ = "public/cloudysky1.JPG"
if Platform$ = "win32" then filepath$ = "public\cloudysky1.JPG"
loadgraphic #sky, filepath$
'render the drawing onto the page
render #sky