forked from phaserjs/phaser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBase64ToArrayBuffer.js
More file actions
69 lines (57 loc) · 1.92 KB
/
Copy pathBase64ToArrayBuffer.js
File metadata and controls
69 lines (57 loc) · 1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/**
* @author Niklas von Hertzen (https://github.com/niklasvh/base64-arraybuffer)
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2020 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
var chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
// Use a lookup table to find the index.
var lookup = new Uint8Array(256);
for (var i = 0; i < chars.length; i++)
{
lookup[chars.charCodeAt(i)] = i;
}
/**
* Converts a base64 string, either with or without a data uri, into an Array Buffer.
*
* @function Phaser.Utils.Base64.Base64ToArrayBuffer
* @since 3.18.0
*
* @param {string} base64 - The base64 string to be decoded. Can optionally contain a data URI header, which will be stripped out prior to decoding.
*
* @return {ArrayBuffer} An ArrayBuffer decoded from the base64 data.
*/
var Base64ToArrayBuffer = function (base64)
{
// Is it a data uri? if so, strip the header away
base64 = base64.substr(base64.indexOf(',') + 1);
var len = base64.length;
var bufferLength = len * 0.75;
var p = 0;
var encoded1;
var encoded2;
var encoded3;
var encoded4;
if (base64[len - 1] === '=')
{
bufferLength--;
if (base64[len - 2] === '=')
{
bufferLength--;
}
}
var arrayBuffer = new ArrayBuffer(bufferLength);
var bytes = new Uint8Array(arrayBuffer);
for (var i = 0; i < len; i += 4)
{
encoded1 = lookup[base64.charCodeAt(i)];
encoded2 = lookup[base64.charCodeAt(i + 1)];
encoded3 = lookup[base64.charCodeAt(i + 2)];
encoded4 = lookup[base64.charCodeAt(i + 3)];
bytes[p++] = (encoded1 << 2) | (encoded2 >> 4);
bytes[p++] = ((encoded2 & 15) << 4) | (encoded3 >> 2);
bytes[p++] = ((encoded3 & 3) << 6) | (encoded4 & 63);
}
return arrayBuffer;
};
module.exports = Base64ToArrayBuffer;