love.data.encode (日本語)

LÖVE 11.0 から使用可能
この関数は以前のバージョンでは非対応です。


EncodeFormat 形式の Data または文字列から Data または文字列をエンコードします。

関数

概要

encoded = love.data.encode( container, format, sourceString, linelength )

引数

ContainerType container
エンコードしたデータの返値型。
EncodeFormat format
出力データ形式。
string sourceString
エンコード対象の生データ
number linelength (0)
出力データにおける一行あたりの最大長です。 Base64 形式に限り有効であり、 0 ならば無視します。

返値

value encoded
元データのエンコード版である ByteData/string を返します。

関数

概要

encoded = love.data.encode( container, format, sourceData, linelength )

引数

ContainerType container
エンコードしたデータの返値型。
EncodeFormat format
出力データ形式。
Data sourceData
エンコード対象の生データ
number linelength (0)
出力データにおける一行あたりの最大長です。 Base64 形式に限り有効であり、 0 ならば無視します。

返値

value encoded
元データのエンコード版である ByteData/string を返します。

関連


そのほかの言語