Image:Render(source, destination)
Renders an image buffer using its own values for location, scale, rotation, and alpha.
Number source - image buffer to be drawn.
Number destination - image buffer to be drawn at.
function main() {
//declare the variable to become the buffer
Var:Number myheart;
//be sure to create the heart.bmp first
Image:Load("heart.bmp", myheart)
//draw the heart to screen (the primary image buffer)
Image:Render(myheart, screen)
}