! showing importing a PICT file (can also use a JPEG or MS BMP)
! into a BOX KEEP string
! see www.truebasic.com Tech Notes, and also what's new in
! v. 5.1
LIBRARY "GOC.trc" !included with Bronze TB
CALL G_Startup
CALL Read_Image("PICT", graph$, "Graph.pict")
BOX SHOW graph$ at 0,0 !shows the graph
PRINT "press any key to quit"
GET KEY x
CALL G_ShutDown !says goodbye politely
END