Difference between revisions of "love.graphics.getCompressedImageFormats (日本語)"

m
m
Line 1: Line 1:
 
{{newinoldin (日本語)|[[0.9.2 (日本語)|0.9.2]]|092|[[11.0 (日本語)|11.0]]|110|type=関数|text=[[love.graphics.getImageFormats (日本語)|love.graphics.getImageFormats]] へ変更}}
 
{{newinoldin (日本語)|[[0.9.2 (日本語)|0.9.2]]|092|[[11.0 (日本語)|11.0]]|110|type=関数|text=[[love.graphics.getImageFormats (日本語)|love.graphics.getImageFormats]] へ変更}}
利用可能な[[CompressedImageFormat (日本語)|圧縮された画像形式]]、および対応しているかどうかを取得します。
+
利用可能な[[CompressedImageFormat (日本語)|圧縮画像形式]]と対応状況を取得します。
 
== 関数 ==
 
== 関数 ==
 
=== 概要 ===
 
=== 概要 ===
Line 36: Line 36:
 
{{#set:PrettyRemoved=11.0}}
 
{{#set:PrettyRemoved=11.0}}
 
{{#set:Sub-Category=SystemInfo (日本語)}}
 
{{#set:Sub-Category=SystemInfo (日本語)}}
{{#set:Description=利用可能な[[CompressedImageFormat (日本語)|圧縮された画像形式]]、および対応しているかどうかを取得します。}}
+
{{#set:Description=利用可能な[[CompressedImageFormat (日本語)|圧縮画像形式]]と対応状況を取得します。}}
 
== そのほかの言語 ==
 
== そのほかの言語 ==
 
{{i18n (日本語)|love.graphics.getCompressedImageFormats}}
 
{{i18n (日本語)|love.graphics.getCompressedImageFormats}}

Revision as of 15:58, 17 July 2019

LÖVE 0.9.2 まで使用可能でしたが LÖVE 11.0 で廃止されました
love.graphics.getImageFormats へ変更。

利用可能な圧縮画像形式と対応状況を取得します。

関数

概要

formats = love.graphics.getCompressedImageFormats( )

引数

返値

返値

table formats
キーとして CompressedImageFormat が入っているテーブル、およびブール値により対応形式を示します。全てのシステムが全形式に対応しているとは限りません。

用例

画面上に圧縮された画像形式の一覧を表示します。

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

関連




そのほかの言語