-
Notifications
You must be signed in to change notification settings - Fork 0
Home
uupaa edited this page Nov 26, 2015
·
21 revisions
TypedArray.js は、TypedArray に不足している機能を補うライブラリです。
Version 0.3.3 まで存在した TypedArray.dump は HexDump.js として別のライブラリに分離しました。
エンディアン情報の取得と、エンディアンの変換を行うための関数があります。
TypedArray.BIG_ENDIAN // -> false (ARM, Intel CPU)
TypedArray.hton16( new Uint8Array([1,2]) ) // -> [2, 1]
TypedArray.ntoh16( new Uint8Array([1,2]) ) // -> [2, 1]
TypedArray.hton16( TypedArray.ntoh16( new Uint8Array([1,2]) ) ) // -> [1, 2]
バッファを2倍に拡張し、元の配列の内容を引き継いだ新しい配列を生成します。
TypedArray.expand( new Uint32Array([1,2,3]) ) // -> Uint32Array([1,2,3,0,0,0])
TypedArray を文字列に変換したり、文字列から TypedArray に変換できます。
TypedArray.toString( new Uint8Array([0x33, 0x34, 0x35, 0x36]) ) // -> "3456"
TypedArray.fromString("Hello") // -> [72, 101, 108, 108, 111]
TypedArray.fromString("あいう") // -> [66, 68, 70]
TypedArray.fromString("あいう", Uint16Array) // -> [12354, 12356, 12358]
URL/FILE/BLOB/BLOBURL/TypedArray/ArrayBuffer を ArrayBuffer に変換します。
TypedArray.toArrayBuffer("http://example.com/404.png", function(arrayBuffer) {
var buffer = new Uint8Array(arrayBuffer);
...
}, function(error) {
...
});