{{newinoldin|[[0.9.2]]|092|[[11.0]]|110|type=function|text=It has been replaced by [[love.graphics.getImageFormats]]}}
Gets the available [[CompressedFormat|compressed image formats]], and whether each is supported.
== 関数 ==
=== 概要 ===
<source lang="lua">
formats = love.graphics.getCompressedImageFormats( )
</source>
=== 引数 ===
なし。
=== 返値 ===
{{param (日本語)|table|formats|A table containing [[CompressedImageFormat]]s as keys, and a boolean indicating whether the format is supported as values. Not all systems support all formats.}}

== 用例 ==
=== Display a list of the compressed image formats on the screen ===
<source lang="Lua">
formats = love.graphics.getCompressedImageFormats()

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>
== 関連 ==
* [[parent::love.graphics (日本語)]]
* [[CompressedImageFormat (日本語)]]
* [[love.graphics.newImage (日本語)]]
* [[love.image.newCompressedData (日本語)]]
[[Category:Functions (日本語)]]
{{#set:Sub-Category=SystemInfo (日本語)}}
{{#set:Description=Gets the available [[CompressedFormat|compressed image formats]], and whether each is supported.}}

== そのほかの言語 ==
{{i18n (日本語)|love.graphics.getCompressedImageFormats}}