Difference between revisions of "love.graphics.newImage"
m (1 revision: Imported docs from potato.) |
|||
Line 1: | Line 1: | ||
− | + | 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. | |
== Function == | == Function == | ||
=== Synopsis === | === Synopsis === | ||
Line 31: | Line 31: | ||
* [[parent::love.graphics]] | * [[parent::love.graphics]] | ||
[[Category:Functions]] | [[Category:Functions]] | ||
− | {{#set:Description=}} | + | {{#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.}} |
Revision as of 16:17, 14 February 2010
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.
Contents
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.