{{newin|[[11.0]]|110|type=function}}
Gets the raw and compressed [[PixelFormat|pixel formats]] usable for [[Image]]s, and whether each is supported.
== Function ==
=== Synopsis ===
<source lang="lua">
formats = love.graphics.getImageFormats( )
</source>
=== Arguments ===
None.
=== Returns ===
{{param|table|formats|A table containing [[PixelFormat]]s 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 ===
<source lang="Lua">
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
</source>
== See Also ==
* [[parent::love.graphics]]
* [[PixelFormat]]
* [[love.graphics.newImage]]
* [[love.image.newImageData]]
* [[love.image.newCompressedData]]
[[Category:Functions]]
{{#set:Sub-Category=SystemInfo}}
{{#set:Description=Gets the [[PixelFormat|pixel formats]] usable for [[Image]]s, and whether each is supported.}}

== Other Languages ==
{{i18n|love.graphics.getImageFormats}}