love.graphics.getImageFormats
Available since LÖVE 11.0
This function is not supported in earlier versions.
Gets the raw and compressed pixel formats usable for Images, and whether each is supported.
Function
Synopsis
formats = love.graphics.getImageFormats( )
Arguments
None.
Returns
table formats
- A table containing PixelFormats as keys, and a boolean indicating whether the format is supported as values. Not all systems support all formats.
Examples
Display a list of the raw and compressed pixel formats usable with Images on the screen
formats = love.graphics.getImageFormats() function love.draw() local y = 0 for formatname, formatsupported in pairs(formats) do local str = string.format("Supports format '%s': %s", formatname, tostring(formatsupported)) love.graphics.print(str, 10, y) y = y + 20 end end
See Also
- love.graphics
- PixelFormat
- love.graphics.newImage
- love.image.newImageData
- love.image.newCompressedData
© 2006–2020 LÖVE Development Team
Licensed under the GNU Free Documentation License, Version 1.3.
https://love2d.org/wiki/love.graphics.getImageFormats