Difference between revisions of "love.graphics.newImage"

 
m (1 revision: Imported docs from potato.)
(No difference)

Revision as of 15:54, 14 February 2010


Function

Synopsis

image = love.graphics.newImage( filename )

Arguments

string filename
The filepath to the image file.

Returns

Image image
An Image object which can be drawn on screen.

Function

Synopsis

image = love.graphics.newImage( file )

Arguments

File file
A File pointing to an image.

Returns

Image image
An Image object which can be drawn on screen.

Function

Synopsis

image = love.graphics.newImage( data )

Arguments

ImageData data
An ImageData object.

Returns

Image image
An Image object which can be drawn on screen.

See Also