Image:New(width, height, return)
Creates an image buffer and loads the image file on the buffer.
This function comes hand in hand with Image:GrabRegion function.
function main() { //declare the variable to become the buffer Var:Number myImage; Image:New(150, 100, myImage) //at this point, we can use myImage //in drawing some image buffers }