-
Notifications
You must be signed in to change notification settings - Fork 27
/
gify.js
253 lines (222 loc) · 7.22 KB
/
gify.js
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
/*
* gify v1.1
* https://github.com/rfrench/gify
*
* Copyright 2013, Ryan French
*
* Licence: Do What The Fuck You Want To Public License
* http://www.wtfpl.net/
*/
/*global console, jDataView, ArrayBuffer */
var gify = (function() { 'use strict';
var defaultDelay = 100;
function getPaletteSize(palette) {
return (3 * Math.pow(2, 1 + bitToInt(palette.slice(5, 8))));
}
function getBitArray(num) {
var bits = [];
for (var i = 7; i >= 0; i--) {
bits.push(!!(num & (1 << i)) ? 1 : 0);
}
return bits;
}
function getDuration(duration) {
return ((duration / 100) * 1000);
}
function bitToInt(bitArray) {
return bitArray.reduce(function(s, n) { return s * 2 + n; }, 0);
}
function readSubBlock(view, pos, read) {
var subBlock = {
data: '',
size: 0
};
while (true) {
var size = view.getUint8(pos + subBlock.size, true);
if (size === 0) {
subBlock.size++;
break;
}
if (read) {
subBlock.data += view.getString(size, pos + subBlock.size + 1);
}
subBlock.size += size + 1;
}
return subBlock;
}
function getNewImage() {
return {
identifier: '0',
localPalette: false,
localPaletteSize: 0,
interlace: false,
comments: [],
text: '',
left: 0,
top: 0,
width: 0,
height: 0,
delay: 0,
disposal: 0
};
}
function getInfo(sourceArrayBuffer, quickPass) {
var pos = 0, size = 0, paletteSize = 0, index = 0;
var info = {
valid: false,
globalPalette: false,
globalPaletteSize: 0,
loopCount: 0,
height: 0,
width: 0,
animated: false,
images: [],
isBrowserDuration: false,
duration: 0,
durationIE: 0,
durationSafari: 0,
durationFirefox: 0,
durationChrome: 0,
durationOpera: 0
};
var view = new jDataView(sourceArrayBuffer);
//needs to be at least 10 bytes long
if(sourceArrayBuffer.byteLength < 10) { return info; }
//GIF8
if ((view.getUint16(0) != 0x4749) || (view.getUint16(2) != 0x4638)) {
return info;
}
//get height/width
info.height = view.getUint16(6, true);
info.width = view.getUint16(8, true);
//not that safe to assume, but good enough by this point
info.valid = true;
//parse global palette
var unpackedField = getBitArray(view.getUint8(10, true));
if (unpackedField[0]) {
var globalPaletteSize = getPaletteSize(unpackedField);
info.globalPalette = true;
info.globalPaletteSize = (globalPaletteSize / 3);
pos += globalPaletteSize;
}
pos += 13;
var image = getNewImage();
while (true) {
try {
var block = view.getUint8(pos, true);
switch(block)
{
case 0x21: //EXTENSION BLOCK
var type = view.getUint8(pos + 1, true);
if (type === 0xF9) { //GRAPHICS CONTROL EXTENSION
var length = view.getUint8(pos + 2);
if (length === 4) {
var delay = getDuration(view.getUint16(pos + 4, true));
if (delay < 60 && !info.isBrowserDuration) {
info.isBrowserDuration = true;
}
//http://nullsleep.tumblr.com/post/16524517190/animated-gif-minimum-frame-delay-browser-compatibility (out of date)
image.delay = delay;
info.duration += delay;
info.durationIE += (delay < 60) ? defaultDelay : delay;
info.durationSafari += (delay < 20) ? defaultDelay : delay;
info.durationChrome += (delay < 20) ? defaultDelay : delay;
info.durationFirefox += (delay < 20) ? defaultDelay : delay;
info.durationOpera += (delay < 20) ? defaultDelay : delay;
//set disposal method
var unpackedField = getBitArray(view.getUint8(pos + 3));
var disposal = unpackedField.slice(3, 6).join('');
image.disposal = parseInt(disposal, 2);
pos += 8;
}
else {
pos++;
}
}
else {
pos += 2;
var subBlock = readSubBlock(view, pos, true);
switch (type)
{
case 0xFF: //APPLICATION EXTENSION
info.loopCount = view.getUint8(pos + 16, true);
break;
case 0xCE: //NAME
/* the only reference to this extension I could find was in
gifsicle. I'm not sure if this is something gifsicle just
made up or if this actually exists outside of this app */
image.identifier = subBlock.data;
break;
case 0xFE: //COMMENT EXTENSION
image.comments.push(subBlock.data);
break;
case 0x01: //PLAIN TEXT EXTENSION
image.text = subBlock.data;
break;
}
pos += subBlock.size;
}
break;
case 0x2C: //IMAGE DESCRIPTOR
image.left = view.getUint16(pos + 1, true);
image.top = view.getUint16(pos + 3, true);
image.width = view.getUint16(pos + 5, true);
image.height = view.getUint16(pos + 7, true);
var unpackedField = getBitArray(view.getUint8(pos + 9, true));
if (unpackedField[0]) {
//local palette?
var localPaletteSize = getPaletteSize(unpackedField);
image.localPalette = true;
image.localPaletteSize = (localPaletteSize / 3);
pos += localPaletteSize;
}
if (unpackedField[1]) {
//interlaced?
image.interlace = true;
}
//add image & reset object
info.images.push(image);
index++;
//create new image
image = getNewImage();
image.identifier = index.toString();
//set animated flag
if (info.images.length > 1 && !info.animated) {
info.animated = true;
//quickly bail if the gif has more than one image
if (quickPass) {
return info;
}
}
pos += 11;
var subBlock = readSubBlock(view, pos, false);
pos += subBlock.size;
break;
case 0x3B: //TRAILER BLOCK (THE END)
return info;
default: //UNKNOWN BLOCK (bad)
pos++;
break;
}
}
catch(e) {
info.valid = false;
return info;
}
//this shouldn't happen, but if the trailer block is missing, we should bail at EOF
if ((pos) >= sourceArrayBuffer.byteLength) {
return info;
}
}
return info;
}
return {
isAnimated: function(sourceArrayBuffer) {
var info = getInfo(sourceArrayBuffer, true);
return info.animated;
},
getInfo: function(sourceArrayBuffer) {
return getInfo(sourceArrayBuffer, false);
}
};
})();