love.image.newImageData
Create a new blank ImageData.
Contents
Function
Synopsis
imageData = love.image.newImageData( x, y )
Arguments
Returns
ImageData imageData
- The new ImageData object.
Function
Synopsis
imageData = love.image.newImageData( filename )
Arguments
string filename
- The filename of the image file.
Returns
ImageData imageData
- The new ImageData object.
Function
Synopsis
imageData = love.image.newImageData( file )
Arguments
File file
- A File to load the image data from.
Returns
ImageData imageData
- The new ImageData object.
Function
Synopsis
imageData = love.image.newImageData( data )
Arguments
Data data
- The encoded data to decode into image data.
Returns
ImageData imageData
- The new ImageData object.