Difference between revisions of "love.data.encode (日本語)"

(Created page with "{{newin (日本語)|11.0|110|type=関数}} EncodeFormat 形式の Data または文字列から Data または文字列を...")
 
(引数)
 
Line 24: Line 24:
 
{{param|ContainerType|container|エンコードしたデータの返値型。}}
 
{{param|ContainerType|container|エンコードしたデータの返値型。}}
 
{{param|EncodeFormat|format|出力データ形式。}}
 
{{param|EncodeFormat|format|出力データ形式。}}
{{param|string|sourceString|エンコード対象の生データ}}
+
{{param|Data|sourceData|エンコード対象の生データ}}
 
{{param|number|linelength (0)|出力データにおける一行あたりの最大長です。 Base64 形式に限り有効であり、 0 ならば無視します。}}
 
{{param|number|linelength (0)|出力データにおける一行あたりの最大長です。 Base64 形式に限り有効であり、 0 ならば無視します。}}
 +
 
=== 返値 ===
 
=== 返値 ===
 
{{param|value|encoded|元データのエンコード版である [[ByteData (日本語)|ByteData]]/[[string (日本語)|string]] を返します。}}
 
{{param|value|encoded|元データのエンコード版である [[ByteData (日本語)|ByteData]]/[[string (日本語)|string]] を返します。}}

Latest revision as of 20:56, 3 February 2022

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 を返します。

関連


そのほかの言語