質問編集履歴
2
誤字
test
CHANGED
File without changes
|
test
CHANGED
@@ -38,7 +38,7 @@
|
|
38
38
|
|
39
39
|
//JSONにする
|
40
40
|
|
41
|
-
const json = JSON.stringify(
|
41
|
+
const json = JSON.stringify(obj);
|
42
42
|
|
43
43
|
|
44
44
|
|
1
ぬけの修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,6 @@
|
|
1
|
-
[前回の質問](https://teratail.com/questions/332655)の続きで、600 x 600ほどの巨大な2次元配列を含むJSONファイルを作成する際に圧縮したい、と思い、[このサイト](https://github.com/imaya/zopfli.js?MobileOptOut=1)で公開されている`Zopfli.js`というライブラリを導入しました。
|
1
|
+
[前回の質問](https://teratail.com/questions/332655)の続きで、JavaScriptで600 x 600ほどの巨大な2次元配列を含むJSONファイルを作成する際に圧縮したい、と思い、[このサイト](https://github.com/imaya/zopfli.js?MobileOptOut=1)で公開されている`Zopfli.js`というライブラリを導入しました。
|
2
|
+
|
3
|
+
以下のように、600 x 600ほどのサイズの`big2DArray`という2次元配列を`Zopfli`を使って圧縮し、それをデータ保存用のオブジェクト`obj`に格納し、`JSON.stringify`でJSON化する、というコードを書きました。
|
2
4
|
|
3
5
|
```
|
4
6
|
|