-
Notifications
You must be signed in to change notification settings - Fork 2
/
readgif.cpp
406 lines (353 loc) · 7.65 KB
/
readgif.cpp
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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
// Also need to honour the transparent color in animated GIFs if we're gonna play them out ;)
// GIF Loader
// by Paul Bartrum
// Modified by M.Brent
#include <windows.h>
#include <stdio.h>
#include <stdarg.h>
#include <string.h>
// Removal of this pack causes crashes and bad decodes
#pragma pack(1)
int _color_load_depth(int depth);
struct LZW_STRING
{
short base;
char cnew;
short length;
};
FILE *f;
int empty_string, curr_bit_size, bit_overflow;
int bit_pos, data_pos, data_len, entire, code;
int cc, string_length, i, bit_size;
unsigned char string[4096];
struct LZW_STRING str[4096];
HGLOBAL bmp;
static struct {
char r, g, b;
} pal[256];
int image_x, image_y, image_w, image_h, x, y;
int width, height, depth;
int interlace, transparent;
UINT32 nMaxBytes;
extern HGLOBAL load_gif(wchar_t *filename, unsigned int *iWidth, unsigned int *iHeight);
int myfgetc(FILE *fp) {
static FILE *handle=0;
static bool fEOF=false;
int c;
if (fp!=handle) {
fEOF=false;
handle=fp;
}
if (fEOF) {
return EOF;
}
c=fgetc(fp);
if (EOF == c) fEOF=true;
return c;
}
void clear_table(void)
{
empty_string = cc + 2;
curr_bit_size = bit_size + 1;
bit_overflow = 0;
}
void get_code(void)
{
if(bit_pos + curr_bit_size > 8) {
if(data_pos >= data_len) { data_len = myfgetc(f); data_pos = 0; }
entire = (myfgetc(f) << 8) + entire;
data_pos ++;
}
if(bit_pos + curr_bit_size > 16) {
if(data_pos >= data_len) { data_len = myfgetc(f); data_pos = 0; }
entire = (myfgetc(f) << 16) + entire;
data_pos ++;
}
code = (entire >> bit_pos) & ((1 << curr_bit_size) - 1);
if(bit_pos + curr_bit_size > 8)
entire >>= 8;
if(bit_pos + curr_bit_size > 16)
entire >>= 8;
bit_pos = (bit_pos + curr_bit_size) % 8;
if(bit_pos == 0) {
if(data_pos >= data_len) { data_len = myfgetc(f); data_pos = 0; }
entire = myfgetc(f);
data_pos ++;
}
}
void get_string(int num)
{
if(num < cc)
{
string_length = 1;
string[0] = str[num].cnew;
}
else
{
i = str[num].length;
string_length = i;
while(i > 0)
{
i --;
string[i] = str[num].cnew;
num = str[num].base;
}
/* if(num != -1) **-{[ERROR]}-** */
}
}
void output_string(void)
{
for(i = 0; i < string_length; i ++)
{
// sanity check - ignore out of range values
if (string[i]>256) string[i]&=0xff;
if (transparent != string[i]) {
if ((unsigned)((y*width*3)+(x*3)+2) < nMaxBytes) {
((char*)bmp)[(y*width*3)+(x*3)]=pal[string[i]].r;
((char*)bmp)[(y*width*3)+(x*3)+1]=pal[string[i]].g;
((char*)bmp)[(y*width*3)+(x*3)+2]=pal[string[i]].b;
}
}
x ++;
if(x >= image_x + image_w)
{
x = image_x;
y += interlace;
if(interlace)
{
if(y >= image_y + image_h)
{
if(interlace == 8 && (y - image_y) % 8 == 0) {
interlace = 8;
y = image_y + 4;
}
else if(interlace == 8 && (y - image_y) % 8 == 4) {
interlace = 4;
y = image_y + 2;
}
else if(interlace == 4) {
interlace = 2;
y = image_y + 1;
}
}
}
}
}
}
int pack_mgetw(FILE *f)
{
int a = myfgetc(f);
int b = myfgetc(f);
return (a<<8)|b;
}
int pack_igetw(FILE *f)
{
int a = myfgetc(f);
int b = myfgetc(f);
return a | (b<<8);
}
/* load_gif:
* Loads a 2-256 colour GIF file onto a bitmap, returning an RGB buffer
* and storing the width and height in the passed pointers
*/
HGLOBAL load_gif(wchar_t *filename, unsigned int *iWidth, unsigned int *iHeight)
{
int old;
transparent=-1;
_wfopen_s(&f, filename, L"rb");
if (!f) /* can't open file */
return NULL;
i = pack_mgetw(f) << 8;
i += myfgetc(f);
if(i != 0x474946) /* is it really a GIF? */
{
fclose(f);
return NULL;
}
fseek(f, 3, SEEK_CUR); /* skip version */
width = pack_igetw(f);
height = pack_igetw(f);
if (feof(f)) {
fclose(f);
return NULL;
}
*iWidth=width;
*iHeight=height;
nMaxBytes=width*height*3;
bmp = GlobalAlloc(GPTR, nMaxBytes);
if(bmp == NULL) {
fclose(f);
return NULL;
}
i = myfgetc(f);
if(i & 128) /* no global colour table? */
depth = (i & 7) + 1;
else
depth = 0;
if (feof(f)) {
GlobalFree(bmp);
fclose(f);
return NULL;
}
fseek(f, 2, SEEK_CUR); /* skip background colour and aspect ratio */
if(pal && depth) /* only read palette if pal and depth are not 0 */
{
for(i = 0; i < (1 << depth); i ++)
{
pal[i].r = (char)myfgetc(f);
pal[i].g = (char)myfgetc(f);
pal[i].b = (char)myfgetc(f);
}
}
else
if(depth)
fseek(f, (1 << depth) * 3, SEEK_CUR);
if (feof(f)) {
GlobalFree(bmp);
fclose(f);
return NULL;
}
for (;;) {
i = myfgetc(f);
if (EOF == i) {
printf(" * Warning - Unexpected end of file!\n");
GlobalFree(bmp);
fclose(f);
return NULL;
}
switch(i)
{
case 0x2C: /* Image Descriptor */
image_x = pack_igetw(f);
image_y = pack_igetw(f); /* individual image dimensions */
image_w = pack_igetw(f);
image_h = pack_igetw(f);
i = myfgetc(f);
if(i & 64)
interlace = 8;
else
interlace = 1;
if(i & 128)
{
depth = (i & 7) + 1;
if(pal)
{
for(i = 0; i < (1 << depth); i ++)
{
pal[i].r = (char)myfgetc(f);
pal[i].g = (char)myfgetc(f);
pal[i].b =(char) myfgetc(f);
}
}
else
fseek(f, (1 << depth) * 3, SEEK_CUR);
}
/* lzw stream starts now */
bit_size = myfgetc(f);
cc = 1 << bit_size;
/* initialise string table */
for(i = 0; i < cc; i ++)
{
str[i].base = -1;
str[i].cnew = (char)i;
str[i].length = 1;
}
/* initialise the variables */
bit_pos = 0;
data_len = myfgetc(f); data_pos = 0;
entire = myfgetc(f); data_pos ++;
string_length = 0; x = image_x; y = image_y;
/* starting code */
clear_table();
get_code();
if(code == cc)
get_code();
get_string(code);
output_string();
old = code;
while(!feof(f))
{
get_code();
if(code == cc)
{
/* starting code */
clear_table();
get_code();
get_string(code);
output_string();
old = code;
}
else if(code == cc + 1)
{
break;
}
else if(code < empty_string)
{
get_string(code);
output_string();
if(bit_overflow == 0) {
str[empty_string].base = (short)old;
str[empty_string].cnew = string[0];
str[empty_string].length = str[old].length + 1;
empty_string ++;
if(empty_string == (1 << curr_bit_size))
curr_bit_size ++;
if(curr_bit_size == 13) {
curr_bit_size = 12;
bit_overflow = 1;
}
}
old = code;
}
else
{
get_string(old);
string[str[old].length] = string[0];
string_length ++;
if(bit_overflow == 0) {
str[empty_string].base = (short)old;
str[empty_string].cnew = string[0];
str[empty_string].length = str[old].length + 1;
empty_string ++;
if(empty_string == (1 << curr_bit_size))
curr_bit_size ++;
if(curr_bit_size == 13) {
curr_bit_size = 12;
bit_overflow = 1;
}
}
output_string();
old = code;
}
}
// We only want the first image in the file
fclose(f);
return bmp;
break;
case 0x21: /* Extension Introducer */
i = myfgetc(f);
if(i == 0xF9) /* Graphic Control Extension */
{
fseek(f, 1, SEEK_CUR); /* skip size (it's 4) */
i = myfgetc(f);
if(i & 1) /* is transparency enabled? */
{
fseek(f, 2, SEEK_CUR);
transparent=myfgetc(f); /* transparent colour */
}
else
fseek(f, 3, SEEK_CUR);
}
i = myfgetc(f);
while(i) /* skip Data Sub-blocks */
{
fseek(f, i, SEEK_CUR);
i = myfgetc(f);
}
break;
case 0x3B: /* Trailer - end of data */
fclose(f);
return bmp;
}
}
}