Difference between revisions of "love.graphics.newImage"
(Converted "power of 2 syndrome" to an article link.) |
|||
Line 1: | Line 1: | ||
− | Creates a new [[Image]] from a filepath | + | Creates a new [[Image]] from a filepath, [[File]] or an [[ImageData]]. |
{{notice|Images are susceptible to [[PO2_Syndrome|power of 2 syndrome]] on many computers with lower end graphics.}} | {{notice|Images are susceptible to [[PO2_Syndrome|power of 2 syndrome]] on many computers with lower end graphics.}} | ||
{{newobjectnotice}} | {{newobjectnotice}} | ||
Line 33: | Line 33: | ||
* [[Constructs::Image]] | * [[Constructs::Image]] | ||
[[Category:Functions]] | [[Category:Functions]] | ||
− | {{#set:Description=Creates a new Image | + | {{#set:Description=Creates a new Image.}} |
{{#set:Since=000}} | {{#set:Since=000}} | ||
== Other Languages == | == Other Languages == | ||
{{i18n|love.graphics.newImage}} | {{i18n|love.graphics.newImage}} |
Revision as of 01:48, 27 November 2012
Creates a new Image from a filepath, File or an ImageData.
Images are susceptible to power of 2 syndrome on many computers with lower end graphics. |
This function can be slow if it is called repeatedly, such as from love.update or love.draw. If you need to use a specific resource often, create it once and store it somewhere it can be reused! |
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( imageData )
Arguments
ImageData imageData
- An ImageData object. The Image uses a copy of this data, so later changes to the ImageData will not affect this Image.
Returns
Image image
- An Image object which can be drawn on screen.
See Also
Other Languages
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info