Difference between revisions of "love.image"

m (1 revision: Importing from potato (again).)
Line 1: Line 1:
 
 
Provides an interface to decode encoded image data.
 
Provides an interface to decode encoded image data.
 
== Types ==
 
== Types ==
Line 20: Line 19:
 
== See Also ==
 
== See Also ==
 
* [[parent::love]]
 
* [[parent::love]]
 +
 +
== Other Languages ==
 +
{{i18n|love.image}}

Revision as of 08:47, 21 September 2010

Provides an interface to decode encoded image data.

Types

CompressedImageDataCompressed image data designed to stay compressed in RAM and on the GPU.
ImageDataRaw (decoded) image data.

Functions

love.image.isCompressedDetermines whether a file can be loaded as CompressedImageData.
love.image.newCompressedDataCreate a new CompressedImageData object from a compressed image file.
love.image.newEncodedImageDataEncodes ImageData.
love.image.newImageDataCreates a new ImageData object.

Enums

CompressedImageFormatCompressed image data formats.
ImageEncodeFormatImage file formats supported by ImageData:encode.
PixelFormatPixel formats for Textures, ImageData, and CompressedImageData.

See Also

Other Languages