Skip to content

Latest commit

 

History

History
635 lines (545 loc) · 16.1 KB

IMG_gif.c

File metadata and controls

635 lines (545 loc) · 16.1 KB
 
Aug 10, 2000
Aug 10, 2000
1
/*
Dec 31, 2011
Dec 31, 2011
2
SDL_image: An example image loading library for use with SDL
Mar 1, 2018
Mar 1, 2018
3
Copyright (C) 1997-2018 Sam Lantinga <slouken@libsdl.org>
Dec 31, 2011
Dec 31, 2011
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Aug 10, 2000
Aug 10, 2000
20
21
*/
Nov 10, 2009
Nov 10, 2009
22
23
#if !defined(__APPLE__) || defined(SDL_IMAGE_USE_COMMON_BACKEND)
Aug 10, 2000
Aug 10, 2000
24
25
26
27
28
29
30
31
32
/* This is a GIF image file loading framework */
#include "SDL_image.h"
#ifdef LOAD_GIF
/* See if an image is contained in a data source */
int IMG_isGIF(SDL_RWops *src)
{
May 22, 2013
May 22, 2013
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
Sint64 start;
int is_GIF;
char magic[6];
if ( !src )
return 0;
start = SDL_RWtell(src);
is_GIF = 0;
if ( SDL_RWread(src, magic, sizeof(magic), 1) ) {
if ( (SDL_strncmp(magic, "GIF", 3) == 0) &&
((SDL_memcmp(magic + 3, "87a", 3) == 0) ||
(SDL_memcmp(magic + 3, "89a", 3) == 0)) ) {
is_GIF = 1;
}
}
SDL_RWseek(src, start, RW_SEEK_SET);
return(is_GIF);
Aug 10, 2000
Aug 10, 2000
50
51
52
53
}
/* Code from here to end of file has been adapted from XPaint: */
/* +-------------------------------------------------------------------+ */
May 22, 2013
May 22, 2013
54
55
/* | Copyright 1990, 1991, 1993 David Koblas. | */
/* | Copyright 1996 Torsten Martinsen. | */
Aug 10, 2000
Aug 10, 2000
56
57
58
59
60
/* | Permission to use, copy, modify, and distribute this software | */
/* | and its documentation for any purpose and without fee is hereby | */
/* | granted, provided that the above copyright notice appear in all | */
/* | copies and that both that copyright notice and this permission | */
/* | notice appear in supporting documentation. This software is | */
May 22, 2013
May 22, 2013
61
/* | provided "as is" without express or implied warranty. | */
Aug 10, 2000
Aug 10, 2000
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/* +-------------------------------------------------------------------+ */
/* Adapted for use in SDL by Sam Lantinga -- 7/20/98 */
#define USED_BY_SDL
#include <stdio.h>
#include <string.h>
#ifdef USED_BY_SDL
/* Changes to work with SDL:
Include SDL header file
Use SDL_Surface rather than xpaint Image structure
Define SDL versions of RWSetMsg(), ImageNewCmap() and ImageSetCmap()
*/
#include "SDL.h"
May 22, 2013
May 22, 2013
79
80
81
#define Image SDL_Surface
#define RWSetMsg IMG_SetError
#define ImageNewCmap(w, h, s) SDL_CreateRGBSurface(SDL_SWSURFACE,w,h,8,0,0,0,0)
Aug 10, 2000
Aug 10, 2000
82
#define ImageSetCmap(s, i, R, G, B) do { \
May 22, 2013
May 22, 2013
83
84
85
86
s->format->palette->colors[i].r = R; \
s->format->palette->colors[i].g = G; \
s->format->palette->colors[i].b = B; \
} while (0)
Aug 10, 2000
Aug 10, 2000
87
88
89
90
91
92
93
94
95
/* * * * * */
#else
/* Original XPaint sources */
#include "image.h"
#include "rwTable.h"
May 22, 2013
May 22, 2013
96
97
#define SDL_RWops FILE
#define SDL_RWclose fclose
Aug 10, 2000
Aug 10, 2000
98
99
100
101
#endif /* USED_BY_SDL */
May 22, 2013
May 22, 2013
102
#define MAXCOLORMAPSIZE 256
Aug 10, 2000
Aug 10, 2000
103
May 22, 2013
May 22, 2013
104
105
#define TRUE 1
#define FALSE 0
Aug 10, 2000
Aug 10, 2000
106
May 22, 2013
May 22, 2013
107
108
109
#define CM_RED 0
#define CM_GREEN 1
#define CM_BLUE 2
Aug 10, 2000
Aug 10, 2000
110
May 22, 2013
May 22, 2013
111
#define MAX_LWZ_BITS 12
Aug 10, 2000
Aug 10, 2000
112
May 22, 2013
May 22, 2013
113
114
115
#define INTERLACE 0x40
#define LOCALCOLORMAP 0x80
#define BitSet(byte, bit) (((byte) & (bit)) == (bit))
Aug 10, 2000
Aug 10, 2000
116
May 22, 2013
May 22, 2013
117
#define ReadOK(file,buffer,len) SDL_RWread(file, buffer, len, 1)
Aug 10, 2000
Aug 10, 2000
118
May 22, 2013
May 22, 2013
119
#define LM_to_uint(a,b) (((b)<<8)|(a))
Aug 10, 2000
Aug 10, 2000
120
Mar 18, 2001
Mar 18, 2001
121
static struct {
Aug 10, 2000
Aug 10, 2000
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
unsigned int Width;
unsigned int Height;
unsigned char ColorMap[3][MAXCOLORMAPSIZE];
unsigned int BitPixel;
unsigned int ColorResolution;
unsigned int Background;
unsigned int AspectRatio;
int GrayScale;
} GifScreen;
static struct {
int transparent;
int delayTime;
int inputFlag;
int disposal;
} Gif89;
static int ReadColorMap(SDL_RWops * src, int number,
May 22, 2013
May 22, 2013
140
unsigned char buffer[3][MAXCOLORMAPSIZE], int *flag);
Aug 10, 2000
Aug 10, 2000
141
142
143
144
145
static int DoExtension(SDL_RWops * src, int label);
static int GetDataBlock(SDL_RWops * src, unsigned char *buf);
static int GetCode(SDL_RWops * src, int code_size, int flag);
static int LWZReadByte(SDL_RWops * src, int flag, int input_code_size);
static Image *ReadImage(SDL_RWops * src, int len, int height, int,
May 22, 2013
May 22, 2013
146
147
unsigned char cmap[3][MAXCOLORMAPSIZE],
int gray, int interlace, int ignore);
Aug 10, 2000
Aug 10, 2000
148
149
150
151
Image *
IMG_LoadGIF_RW(SDL_RWops *src)
{
Feb 3, 2013
Feb 3, 2013
152
Sint64 start;
Aug 10, 2000
Aug 10, 2000
153
154
155
156
157
158
159
160
161
162
163
164
unsigned char buf[16];
unsigned char c;
unsigned char localColorMap[3][MAXCOLORMAPSIZE];
int grayScale;
int useGlobalColormap;
int bitPixel;
int imageCount = 0;
char version[4];
int imageNumber = 1;
Image *image = NULL;
if ( src == NULL ) {
May 22, 2013
May 22, 2013
165
return NULL;
Aug 10, 2000
Aug 10, 2000
166
}
Feb 4, 2006
Feb 4, 2006
167
168
start = SDL_RWtell(src);
Aug 10, 2000
Aug 10, 2000
169
if (!ReadOK(src, buf, 6)) {
May 22, 2013
May 22, 2013
170
RWSetMsg("error reading magic number");
Aug 10, 2000
Aug 10, 2000
171
172
goto done;
}
Feb 3, 2013
Feb 3, 2013
173
if (SDL_strncmp((char *) buf, "GIF", 3) != 0) {
May 22, 2013
May 22, 2013
174
RWSetMsg("not a GIF file");
Aug 10, 2000
Aug 10, 2000
175
176
goto done;
}
Feb 3, 2013
Feb 3, 2013
177
SDL_memcpy(version, (char *) buf + 3, 3);
Aug 10, 2000
Aug 10, 2000
178
179
version[3] = '\0';
Feb 3, 2013
Feb 3, 2013
180
if ((SDL_strcmp(version, "87a") != 0) && (SDL_strcmp(version, "89a") != 0)) {
May 22, 2013
May 22, 2013
181
RWSetMsg("bad version number, not '87a' or '89a'");
Aug 10, 2000
Aug 10, 2000
182
183
184
185
186
187
188
189
goto done;
}
Gif89.transparent = -1;
Gif89.delayTime = -1;
Gif89.inputFlag = -1;
Gif89.disposal = 0;
if (!ReadOK(src, buf, 7)) {
May 22, 2013
May 22, 2013
190
RWSetMsg("failed to read screen descriptor");
Aug 10, 2000
Aug 10, 2000
191
192
193
194
195
196
197
198
199
goto done;
}
GifScreen.Width = LM_to_uint(buf[0], buf[1]);
GifScreen.Height = LM_to_uint(buf[2], buf[3]);
GifScreen.BitPixel = 2 << (buf[4] & 0x07);
GifScreen.ColorResolution = (((buf[4] & 0x70) >> 3) + 1);
GifScreen.Background = buf[5];
GifScreen.AspectRatio = buf[6];
May 22, 2013
May 22, 2013
200
201
202
203
if (BitSet(buf[4], LOCALCOLORMAP)) { /* Global Colormap */
if (ReadColorMap(src, GifScreen.BitPixel, GifScreen.ColorMap,
&GifScreen.GrayScale)) {
RWSetMsg("error reading global colormap");
Aug 10, 2000
Aug 10, 2000
204
goto done;
May 22, 2013
May 22, 2013
205
}
Aug 10, 2000
Aug 10, 2000
206
207
}
do {
May 22, 2013
May 22, 2013
208
209
if (!ReadOK(src, &c, 1)) {
RWSetMsg("EOF / read error on image data");
Aug 10, 2000
Aug 10, 2000
210
goto done;
May 22, 2013
May 22, 2013
211
212
213
214
215
}
if (c == ';') { /* GIF terminator */
if (imageCount < imageNumber) {
RWSetMsg("only %d image%s found in file",
imageCount, imageCount > 1 ? "s" : "");
Aug 10, 2000
Aug 10, 2000
216
goto done;
May 22, 2013
May 22, 2013
217
218
219
220
221
}
}
if (c == '!') { /* Extension */
if (!ReadOK(src, &c, 1)) {
RWSetMsg("EOF / read error on extention function code");
Aug 10, 2000
Aug 10, 2000
222
goto done;
May 22, 2013
May 22, 2013
223
224
225
226
227
228
229
230
231
232
233
}
DoExtension(src, c);
continue;
}
if (c != ',') { /* Not a valid start character */
continue;
}
++imageCount;
if (!ReadOK(src, buf, 9)) {
RWSetMsg("couldn't read left/top/width/height");
Aug 10, 2000
Aug 10, 2000
234
goto done;
May 22, 2013
May 22, 2013
235
236
}
useGlobalColormap = !BitSet(buf[8], LOCALCOLORMAP);
Aug 10, 2000
Aug 10, 2000
237
May 22, 2013
May 22, 2013
238
bitPixel = 1 << ((buf[8] & 0x07) + 1);
Aug 10, 2000
Aug 10, 2000
239
May 22, 2013
May 22, 2013
240
241
242
if (!useGlobalColormap) {
if (ReadColorMap(src, bitPixel, localColorMap, &grayScale)) {
RWSetMsg("error reading local colormap");
Aug 10, 2000
Aug 10, 2000
243
goto done;
May 22, 2013
May 22, 2013
244
245
246
247
248
249
250
251
252
253
254
255
256
}
image = ReadImage(src, LM_to_uint(buf[4], buf[5]),
LM_to_uint(buf[6], buf[7]),
bitPixel, localColorMap, grayScale,
BitSet(buf[8], INTERLACE),
imageCount != imageNumber);
} else {
image = ReadImage(src, LM_to_uint(buf[4], buf[5]),
LM_to_uint(buf[6], buf[7]),
GifScreen.BitPixel, GifScreen.ColorMap,
GifScreen.GrayScale, BitSet(buf[8], INTERLACE),
imageCount != imageNumber);
}
Aug 10, 2000
Aug 10, 2000
257
258
259
} while (image == NULL);
#ifdef USED_BY_SDL
Nov 20, 2001
Nov 20, 2001
260
if ( Gif89.transparent >= 0 ) {
Jan 23, 2012
Jan 23, 2012
261
SDL_SetColorKey(image, SDL_TRUE, Gif89.transparent);
Aug 10, 2000
Aug 10, 2000
262
263
264
265
}
#endif
done:
Feb 4, 2006
Feb 4, 2006
266
if ( image == NULL ) {
Nov 8, 2009
Nov 8, 2009
267
SDL_RWseek(src, start, RW_SEEK_SET);
Feb 4, 2006
Feb 4, 2006
268
}
Aug 10, 2000
Aug 10, 2000
269
270
271
272
273
274
275
276
277
278
279
280
281
282
return image;
}
static int
ReadColorMap(SDL_RWops *src, int number,
unsigned char buffer[3][MAXCOLORMAPSIZE], int *gray)
{
int i;
unsigned char rgb[3];
int flag;
flag = TRUE;
for (i = 0; i < number; ++i) {
May 22, 2013
May 22, 2013
283
284
285
286
287
288
289
290
if (!ReadOK(src, rgb, sizeof(rgb))) {
RWSetMsg("bad colormap");
return 1;
}
buffer[CM_RED][i] = rgb[0];
buffer[CM_GREEN][i] = rgb[1];
buffer[CM_BLUE][i] = rgb[2];
flag &= (rgb[0] == rgb[1] && rgb[1] == rgb[2]);
Aug 10, 2000
Aug 10, 2000
291
292
293
294
}
#if 0
if (flag)
May 22, 2013
May 22, 2013
295
*gray = (number == 2) ? PBM_TYPE : PGM_TYPE;
Aug 10, 2000
Aug 10, 2000
296
else
May 22, 2013
May 22, 2013
297
*gray = PPM_TYPE;
Aug 10, 2000
Aug 10, 2000
298
299
300
301
302
303
304
305
306
307
308
309
310
311
#else
*gray = 0;
#endif
return FALSE;
}
static int
DoExtension(SDL_RWops *src, int label)
{
static unsigned char buf[256];
char *str;
switch (label) {
May 22, 2013
May 22, 2013
312
313
314
315
316
317
318
319
case 0x01: /* Plain Text Extension */
str = "Plain Text Extension";
break;
case 0xff: /* Application Extension */
str = "Application Extension";
break;
case 0xfe: /* Comment Extension */
str = "Comment Extension";
Sep 26, 2018
Sep 26, 2018
320
while (GetDataBlock(src, (unsigned char *) buf) > 0)
May 22, 2013
May 22, 2013
321
322
323
324
325
326
327
328
329
330
331
;
return FALSE;
case 0xf9: /* Graphic Control Extension */
str = "Graphic Control Extension";
(void) GetDataBlock(src, (unsigned char *) buf);
Gif89.disposal = (buf[0] >> 2) & 0x7;
Gif89.inputFlag = (buf[0] >> 1) & 0x1;
Gif89.delayTime = LM_to_uint(buf[1], buf[2]);
if ((buf[0] & 0x1) != 0)
Gif89.transparent = buf[3];
Sep 26, 2018
Sep 26, 2018
332
while (GetDataBlock(src, (unsigned char *) buf) > 0)
May 22, 2013
May 22, 2013
333
334
;
return FALSE;
Aug 10, 2000
Aug 10, 2000
335
default:
May 22, 2013
May 22, 2013
336
337
338
str = (char *)buf;
SDL_snprintf(str, 256, "UNKNOWN (0x%02x)", label);
break;
Aug 10, 2000
Aug 10, 2000
339
340
}
Sep 26, 2018
Sep 26, 2018
341
while (GetDataBlock(src, (unsigned char *) buf) > 0)
May 22, 2013
May 22, 2013
342
;
Aug 10, 2000
Aug 10, 2000
343
344
345
346
347
348
349
350
351
352
353
354
return FALSE;
}
static int ZeroDataBlock = FALSE;
static int
GetDataBlock(SDL_RWops *src, unsigned char *buf)
{
unsigned char count;
if (!ReadOK(src, &count, 1)) {
May 22, 2013
May 22, 2013
355
356
/* pm_message("error in getting DataBlock size" ); */
return -1;
Aug 10, 2000
Aug 10, 2000
357
358
359
360
}
ZeroDataBlock = count == 0;
if ((count != 0) && (!ReadOK(src, buf, count))) {
May 22, 2013
May 22, 2013
361
362
/* pm_message("error in reading DataBlock" ); */
return -1;
Aug 10, 2000
Aug 10, 2000
363
364
365
366
367
368
369
370
371
372
373
374
375
}
return count;
}
static int
GetCode(SDL_RWops *src, int code_size, int flag)
{
static unsigned char buf[280];
static int curbit, lastbit, done, last_byte;
int i, j, ret;
unsigned char count;
if (flag) {
May 22, 2013
May 22, 2013
376
377
378
379
curbit = 0;
lastbit = 0;
done = FALSE;
return 0;
Aug 10, 2000
Aug 10, 2000
380
381
}
if ((curbit + code_size) >= lastbit) {
May 22, 2013
May 22, 2013
382
383
384
385
386
387
388
if (done) {
if (curbit >= lastbit)
RWSetMsg("ran off the end of my bits");
return -1;
}
buf[0] = buf[last_byte - 2];
buf[1] = buf[last_byte - 1];
Aug 10, 2000
Aug 10, 2000
389
Sep 26, 2018
Sep 26, 2018
390
if ((count = GetDataBlock(src, &buf[2])) <= 0)
May 22, 2013
May 22, 2013
391
done = TRUE;
Aug 10, 2000
Aug 10, 2000
392
May 22, 2013
May 22, 2013
393
394
395
last_byte = 2 + count;
curbit = (curbit - lastbit) + 16;
lastbit = (2 + count) * 8;
Aug 10, 2000
Aug 10, 2000
396
397
398
}
ret = 0;
for (i = curbit, j = 0; j < code_size; ++i, ++j)
May 22, 2013
May 22, 2013
399
ret |= ((buf[i / 8] & (1 << (i % 8))) != 0) << j;
Aug 10, 2000
Aug 10, 2000
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
curbit += code_size;
return ret;
}
static int
LWZReadByte(SDL_RWops *src, int flag, int input_code_size)
{
static int fresh = FALSE;
int code, incode;
static int code_size, set_code_size;
static int max_code, max_code_size;
static int firstcode, oldcode;
static int clear_code, end_code;
static int table[2][(1 << MAX_LWZ_BITS)];
static int stack[(1 << (MAX_LWZ_BITS)) * 2], *sp;
register int i;
Dec 28, 2007
Dec 28, 2007
419
420
421
422
/* Fixed buffer overflow found by Michael Skladnikiewicz */
if (input_code_size > MAX_LWZ_BITS)
return -1;
Aug 10, 2000
Aug 10, 2000
423
if (flag) {
May 22, 2013
May 22, 2013
424
425
426
427
428
429
set_code_size = input_code_size;
code_size = set_code_size + 1;
clear_code = 1 << set_code_size;
end_code = clear_code + 1;
max_code_size = 2 * clear_code;
max_code = clear_code + 2;
Aug 10, 2000
Aug 10, 2000
430
May 22, 2013
May 22, 2013
431
GetCode(src, 0, TRUE);
Aug 10, 2000
Aug 10, 2000
432
May 22, 2013
May 22, 2013
433
fresh = TRUE;
Aug 10, 2000
Aug 10, 2000
434
May 22, 2013
May 22, 2013
435
436
437
438
439
440
441
for (i = 0; i < clear_code; ++i) {
table[0][i] = 0;
table[1][i] = i;
}
table[1][0] = 0;
for (; i < (1 << MAX_LWZ_BITS); ++i)
table[0][i] = 0;
Aug 10, 2000
Aug 10, 2000
442
May 22, 2013
May 22, 2013
443
sp = stack;
Aug 10, 2000
Aug 10, 2000
444
May 22, 2013
May 22, 2013
445
return 0;
Aug 10, 2000
Aug 10, 2000
446
} else if (fresh) {
May 22, 2013
May 22, 2013
447
448
449
450
451
fresh = FALSE;
do {
firstcode = oldcode = GetCode(src, code_size, FALSE);
} while (firstcode == clear_code);
return firstcode;
Aug 10, 2000
Aug 10, 2000
452
453
}
if (sp > stack)
May 22, 2013
May 22, 2013
454
return *--sp;
Aug 10, 2000
Aug 10, 2000
455
456
while ((code = GetCode(src, code_size, FALSE)) >= 0) {
May 22, 2013
May 22, 2013
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
if (code == clear_code) {
for (i = 0; i < clear_code; ++i) {
table[0][i] = 0;
table[1][i] = i;
}
for (; i < (1 << MAX_LWZ_BITS); ++i)
table[0][i] = table[1][i] = 0;
code_size = set_code_size + 1;
max_code_size = 2 * clear_code;
max_code = clear_code + 2;
sp = stack;
firstcode = oldcode = GetCode(src, code_size, FALSE);
return firstcode;
} else if (code == end_code) {
int count;
unsigned char buf[260];
if (ZeroDataBlock)
return -2;
while ((count = GetDataBlock(src, buf)) > 0)
;
if (count != 0) {
/*
* pm_message("missing EOD in data stream (common occurence)");
*/
}
return -2;
}
incode = code;
if (code >= max_code) {
*sp++ = firstcode;
code = oldcode;
}
while (code >= clear_code) {
/* Guard against buffer overruns */
if (code < 0 || code >= (1 << MAX_LWZ_BITS)) {
RWSetMsg("invalid LWZ data");
return -3;
}
*sp++ = table[1][code];
Jan 28, 2018
Jan 28, 2018
500
501
502
503
if (code == table[0][code]) {
RWSetMsg("circular table entry BIG ERROR");
return -3;
}
May 22, 2013
May 22, 2013
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
code = table[0][code];
}
/* Guard against buffer overruns */
if (code < 0 || code >= (1 << MAX_LWZ_BITS)) {
RWSetMsg("invalid LWZ data");
return -4;
}
*sp++ = firstcode = table[1][code];
if ((code = max_code) < (1 << MAX_LWZ_BITS)) {
table[0][code] = oldcode;
table[1][code] = firstcode;
++max_code;
if ((max_code >= max_code_size) &&
(max_code_size < (1 << MAX_LWZ_BITS))) {
max_code_size *= 2;
++code_size;
}
}
oldcode = incode;
if (sp > stack)
return *--sp;
Aug 10, 2000
Aug 10, 2000
528
529
530
531
532
533
}
return code;
}
static Image *
ReadImage(SDL_RWops * src, int len, int height, int cmapSize,
May 22, 2013
May 22, 2013
534
535
unsigned char cmap[3][MAXCOLORMAPSIZE],
int gray, int interlace, int ignore)
Aug 10, 2000
Aug 10, 2000
536
537
538
539
540
541
542
{
Image *image;
unsigned char c;
int i, v;
int xpos = 0, ypos = 0, pass = 0;
/*
May 22, 2013
May 22, 2013
543
** Initialize the compression routines
Aug 10, 2000
Aug 10, 2000
544
545
*/
if (!ReadOK(src, &c, 1)) {
May 22, 2013
May 22, 2013
546
547
RWSetMsg("EOF / read error on image data");
return NULL;
Aug 10, 2000
Aug 10, 2000
548
549
}
if (LWZReadByte(src, TRUE, c) < 0) {
May 22, 2013
May 22, 2013
550
551
RWSetMsg("error reading image");
return NULL;
Aug 10, 2000
Aug 10, 2000
552
553
}
/*
May 22, 2013
May 22, 2013
554
** If this is an "uninteresting picture" ignore it.
Aug 10, 2000
Aug 10, 2000
555
556
*/
if (ignore) {
May 22, 2013
May 22, 2013
557
558
559
while (LWZReadByte(src, FALSE, c) >= 0)
;
return NULL;
Aug 10, 2000
Aug 10, 2000
560
561
562
563
}
image = ImageNewCmap(len, height, cmapSize);
for (i = 0; i < cmapSize; i++)
May 22, 2013
May 22, 2013
564
565
ImageSetCmap(image, i, cmap[CM_RED][i],
cmap[CM_GREEN][i], cmap[CM_BLUE][i]);
Aug 10, 2000
Aug 10, 2000
566
567
568
while ((v = LWZReadByte(src, FALSE, c)) >= 0) {
#ifdef USED_BY_SDL
May 22, 2013
May 22, 2013
569
((Uint8 *)image->pixels)[xpos + ypos * image->pitch] = v;
Aug 10, 2000
Aug 10, 2000
570
#else
May 22, 2013
May 22, 2013
571
image->data[xpos + ypos * len] = v;
Aug 10, 2000
Aug 10, 2000
572
#endif
May 22, 2013
May 22, 2013
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
++xpos;
if (xpos == len) {
xpos = 0;
if (interlace) {
switch (pass) {
case 0:
case 1:
ypos += 8;
break;
case 2:
ypos += 4;
break;
case 3:
ypos += 2;
break;
}
if (ypos >= height) {
++pass;
switch (pass) {
case 1:
ypos = 4;
break;
case 2:
ypos = 2;
break;
case 3:
ypos = 1;
break;
default:
goto fini;
}
}
} else {
++ypos;
}
}
if (ypos >= height)
break;
Aug 10, 2000
Aug 10, 2000
612
613
614
615
616
617
618
619
620
621
622
623
}
fini:
return image;
}
#else
/* See if an image is contained in a data source */
int IMG_isGIF(SDL_RWops *src)
{
May 22, 2013
May 22, 2013
624
return(0);
Aug 10, 2000
Aug 10, 2000
625
626
627
628
629
}
/* Load a GIF type image from an SDL datasource */
SDL_Surface *IMG_LoadGIF_RW(SDL_RWops *src)
{
May 22, 2013
May 22, 2013
630
return(NULL);
Aug 10, 2000
Aug 10, 2000
631
632
633
}
#endif /* LOAD_GIF */
Nov 10, 2009
Nov 10, 2009
634
635
#endif /* !defined(__APPLE__) || defined(SDL_IMAGE_USE_COMMON_BACKEND) */