Difference between revisions of "love.graphics.newImage"

m
Line 30: Line 30:
 
== See Also ==
 
== See Also ==
 
* [[parent::love.graphics]]
 
* [[parent::love.graphics]]
 +
* [[Constructs::Image]]
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Creates a new Image from a file path. Note that the x and y dimensions of the image must (currently) be a power of 2, or some graphics cards will not display it.}}
 
{{#set:Description=Creates a new Image from a file path. Note that the x and y dimensions of the image must (currently) be a power of 2, or some graphics cards will not display it.}}
 +
{{#set:Since=000}}
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|love.graphics.newImage}}
 
{{i18n|love.graphics.newImage}}

Revision as of 10:01, 25 March 2011

O.png Images are susceptible to power of 2 syndrome on many computers with lower end graphics.  


Creates a new Image from a filepath or an opened File or an ImageData.

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( imageData )

Arguments

ImageData imageData
An ImageData object.

Returns

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

See Also


Other Languages