love.data.decompress (日本語)

LÖVE 11.0 から使用可能
廃止予定の love.math.decompress から変更。

CompressedData または以前に圧縮した文字列か Dataオブジェクトを展開します。

関数

概要

decompressedData = love.data.decompress( container, compressedData )

引数

ContainerType container
返したい展開データ形式の種類。
CompressedData compressedData
展開対象の圧縮データ。

返値

value decompressedData
元データを展開した ByteData/string を返します。

関数

概要

decompressedData = love.data.decompress( container, format, compressedString )

引数

ContainerType container
返したい展開データ形式の種類。
CompressedDataFormat format
指定された文字列の圧縮で用いられた形式です。
string compressedString
以前に love.data.compress で圧縮されたデータとして文字列の内容を指定します。

返値

value decompressedData
元データを展開した ByteData/string を返します。

関数

概要

decompressedData = love.data.decompress( container, format, data )

引数

ContainerType container
返したい展開データ形式の種類。
CompressedDataFormat format
指定された Data の圧縮で用いられた形式です。
Data data
以前に love.data.compress で圧縮されたデータとして Data の内容を指定します。

返値

value decompressedData
元データを展開した ByteData/string を返します。

関連


そのほかの言語