DRAWIMAGE()
Description
- Send an image loaded from a file to display in a graphics area
Syntax
- #handle DRAWIMAGE("name", x, y) - Draw the image named "name" at x, y
Hints
- Use LOADIMAGE to load the image from disk
Example
'Load the image
loadimage "banner", "cloudsbanner1.jpg"
'create a graphic object.
graphic #g, 800, 100
'draw the image in the graphic object.
#g drawimage("banner",0,0)
'display it on the web page
render #g
Useful Procedures
' Place a useful function or sub using this keyword here