Skip to content

Latest commit

 

History

History
636 lines (545 loc) · 16.1 KB

IMG_gif.c

File metadata and controls

636 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
Feb 15, 2013
Feb 15, 2013
3
Copyright (C) 1997-2013 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
33
34
35
/* This is a GIF image file loading framework */
#include <stdio.h>
#include <string.h>
#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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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
53
54
55
56
}
/* Code from here to end of file has been adapted from XPaint: */
/* +-------------------------------------------------------------------+ */
May 22, 2013
May 22, 2013
57
58
/* | Copyright 1990, 1991, 1993 David Koblas. | */
/* | Copyright 1996 Torsten Martinsen. | */
Aug 10, 2000
Aug 10, 2000
59
60
61
62
63
/* | 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
64
/* | provided "as is" without express or implied warranty. | */
Aug 10, 2000
Aug 10, 2000
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/* +-------------------------------------------------------------------+ */
/* 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
82
83
84
#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
85
#define ImageSetCmap(s, i, R, G, B) do { \
May 22, 2013
May 22, 2013
86
87
88
89
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
90
91
92
93
94
95
96
97
98
/* * * * * */
#else
/* Original XPaint sources */
#include "image.h"
#include "rwTable.h"
May 22, 2013
May 22, 2013
99
100
#define SDL_RWops FILE
#define SDL_RWclose fclose
Aug 10, 2000
Aug 10, 2000
101
102
103
104
#endif /* USED_BY_SDL */
May 22, 2013
May 22, 2013
105
#define MAXCOLORMAPSIZE 256
Aug 10, 2000
Aug 10, 2000
106
May 22, 2013
May 22, 2013
107
108
#define TRUE 1
#define FALSE 0
Aug 10, 2000
Aug 10, 2000
109
May 22, 2013
May 22, 2013
110
111
112
#define CM_RED 0
#define CM_GREEN 1
#define CM_BLUE 2
Aug 10, 2000
Aug 10, 2000
113
May 22, 2013
May 22, 2013
114
#define MAX_LWZ_BITS 12
Aug 10, 2000
Aug 10, 2000
115
May 22, 2013
May 22, 2013
116
117
118
#define INTERLACE 0x40
#define LOCALCOLORMAP 0x80
#define BitSet(byte, bit) (((byte) & (bit)) == (bit))
Aug 10, 2000
Aug 10, 2000
119
May 22, 2013
May 22, 2013
120
#define ReadOK(file,buffer,len) SDL_RWread(file, buffer, len, 1)
Aug 10, 2000
Aug 10, 2000
121
May 22, 2013
May 22, 2013
122
#define LM_to_uint(a,b) (((b)<<8)|(a))
Aug 10, 2000
Aug 10, 2000
123
Mar 18, 2001
Mar 18, 2001
124
static struct {
Aug 10, 2000
Aug 10, 2000
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
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
143
unsigned char buffer[3][MAXCOLORMAPSIZE], int *flag);
Aug 10, 2000
Aug 10, 2000
144
145
146
147
148
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
149
150
unsigned char cmap[3][MAXCOLORMAPSIZE],
int gray, int interlace, int ignore);
Aug 10, 2000
Aug 10, 2000
151
152
153
154
Image *
IMG_LoadGIF_RW(SDL_RWops *src)
{
Feb 3, 2013
Feb 3, 2013
155
Sint64 start;
Aug 10, 2000
Aug 10, 2000
156
157
158
159
160
161
162
163
164
165
166
167
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
168
return NULL;
Aug 10, 2000
Aug 10, 2000
169
}
Feb 4, 2006
Feb 4, 2006
170
171
start = SDL_RWtell(src);
Aug 10, 2000
Aug 10, 2000
172
if (!ReadOK(src, buf, 6)) {
May 22, 2013
May 22, 2013
173
RWSetMsg("error reading magic number");
Aug 10, 2000
Aug 10, 2000
174
175
goto done;
}
Feb 3, 2013
Feb 3, 2013
176
if (SDL_strncmp((char *) buf, "GIF", 3) != 0) {
May 22, 2013
May 22, 2013
177
RWSetMsg("not a GIF file");
Aug 10, 2000
Aug 10, 2000
178
179
goto done;
}
Feb 3, 2013
Feb 3, 2013
180
SDL_memcpy(version, (char *) buf + 3, 3);
Aug 10, 2000
Aug 10, 2000
181
182
version[3] = '\0';
Feb 3, 2013
Feb 3, 2013
183
if ((SDL_strcmp(version, "87a") != 0) && (SDL_strcmp(version, "89a") != 0)) {
May 22, 2013
May 22, 2013
184
RWSetMsg("bad version number, not '87a' or '89a'");
Aug 10, 2000
Aug 10, 2000
185
186
187
188
189
190
191
192
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
193
RWSetMsg("failed to read screen descriptor");
Aug 10, 2000
Aug 10, 2000
194
195
196
197
198
199
200
201
202
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
203
204
205
206
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
207
goto done;
May 22, 2013
May 22, 2013
208
}
Aug 10, 2000
Aug 10, 2000
209
210
}
do {
May 22, 2013
May 22, 2013
211
212
if (!ReadOK(src, &c, 1)) {
RWSetMsg("EOF / read error on image data");
Aug 10, 2000
Aug 10, 2000
213
goto done;
May 22, 2013
May 22, 2013
214
215
216
217
218
}
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
219
goto done;
May 22, 2013
May 22, 2013
220
221
222
223
224
}
}
if (c == '!') { /* Extension */
if (!ReadOK(src, &c, 1)) {
RWSetMsg("EOF / read error on extention function code");
Aug 10, 2000
Aug 10, 2000
225
goto done;
May 22, 2013
May 22, 2013
226
227
228
229
230
231
232
233
234
235
236
}
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
237
goto done;
May 22, 2013
May 22, 2013
238
239
}
useGlobalColormap = !BitSet(buf[8], LOCALCOLORMAP);
Aug 10, 2000
Aug 10, 2000
240
May 22, 2013
May 22, 2013
241
bitPixel = 1 << ((buf[8] & 0x07) + 1);
Aug 10, 2000
Aug 10, 2000
242
May 22, 2013
May 22, 2013
243
244
245
if (!useGlobalColormap) {
if (ReadColorMap(src, bitPixel, localColorMap, &grayScale)) {
RWSetMsg("error reading local colormap");
Aug 10, 2000
Aug 10, 2000
246
goto done;
May 22, 2013
May 22, 2013
247
248
249
250
251
252
253
254
255
256
257
258
259
}
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
260
261
262
} while (image == NULL);
#ifdef USED_BY_SDL
Nov 20, 2001
Nov 20, 2001
263
if ( Gif89.transparent >= 0 ) {
Jan 23, 2012
Jan 23, 2012
264
SDL_SetColorKey(image, SDL_TRUE, Gif89.transparent);
Aug 10, 2000
Aug 10, 2000
265
266
267
268
}
#endif
done:
Feb 4, 2006
Feb 4, 2006
269
if ( image == NULL ) {
Nov 8, 2009
Nov 8, 2009
270
SDL_RWseek(src, start, RW_SEEK_SET);
Feb 4, 2006
Feb 4, 2006
271
}
Aug 10, 2000
Aug 10, 2000
272
273
274
275
276
277
278
279
280
281
282
283
284
285
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
286
287
288
289
290
291
292
293
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
294
295
296
297
}
#if 0
if (flag)
May 22, 2013
May 22, 2013
298
*gray = (number == 2) ? PBM_TYPE : PGM_TYPE;
Aug 10, 2000
Aug 10, 2000
299
else
May 22, 2013
May 22, 2013
300
*gray = PPM_TYPE;
Aug 10, 2000
Aug 10, 2000
301
302
303
304
305
306
307
308
309
310
311
312
313
314
#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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
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";
while (GetDataBlock(src, (unsigned char *) buf) != 0)
;
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];
while (GetDataBlock(src, (unsigned char *) buf) != 0)
;
return FALSE;
Aug 10, 2000
Aug 10, 2000
338
default:
May 22, 2013
May 22, 2013
339
340
341
str = (char *)buf;
SDL_snprintf(str, 256, "UNKNOWN (0x%02x)", label);
break;
Aug 10, 2000
Aug 10, 2000
342
343
}
May 14, 2006
May 14, 2006
344
while (GetDataBlock(src, (unsigned char *) buf) != 0)
May 22, 2013
May 22, 2013
345
;
Aug 10, 2000
Aug 10, 2000
346
347
348
349
350
351
352
353
354
355
356
357
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
358
359
/* pm_message("error in getting DataBlock size" ); */
return -1;
Aug 10, 2000
Aug 10, 2000
360
361
362
363
}
ZeroDataBlock = count == 0;
if ((count != 0) && (!ReadOK(src, buf, count))) {
May 22, 2013
May 22, 2013
364
365
/* pm_message("error in reading DataBlock" ); */
return -1;
Aug 10, 2000
Aug 10, 2000
366
367
368
369
370
371
372
373
374
375
376
377
378
}
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
379
380
381
382
curbit = 0;
lastbit = 0;
done = FALSE;
return 0;
Aug 10, 2000
Aug 10, 2000
383
384
}
if ((curbit + code_size) >= lastbit) {
May 22, 2013
May 22, 2013
385
386
387
388
389
390
391
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
392
May 22, 2013
May 22, 2013
393
394
if ((count = GetDataBlock(src, &buf[2])) == 0)
done = TRUE;
Aug 10, 2000
Aug 10, 2000
395
May 22, 2013
May 22, 2013
396
397
398
last_byte = 2 + count;
curbit = (curbit - lastbit) + 16;
lastbit = (2 + count) * 8;
Aug 10, 2000
Aug 10, 2000
399
400
401
}
ret = 0;
for (i = curbit, j = 0; j < code_size; ++i, ++j)
May 22, 2013
May 22, 2013
402
ret |= ((buf[i / 8] & (1 << (i % 8))) != 0) << j;
Aug 10, 2000
Aug 10, 2000
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
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
422
423
424
425
/* Fixed buffer overflow found by Michael Skladnikiewicz */
if (input_code_size > MAX_LWZ_BITS)
return -1;
Aug 10, 2000
Aug 10, 2000
426
if (flag) {
May 22, 2013
May 22, 2013
427
428
429
430
431
432
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
433
May 22, 2013
May 22, 2013
434
GetCode(src, 0, TRUE);
Aug 10, 2000
Aug 10, 2000
435
May 22, 2013
May 22, 2013
436
fresh = TRUE;
Aug 10, 2000
Aug 10, 2000
437
May 22, 2013
May 22, 2013
438
439
440
441
442
443
444
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
445
May 22, 2013
May 22, 2013
446
sp = stack;
Aug 10, 2000
Aug 10, 2000
447
May 22, 2013
May 22, 2013
448
return 0;
Aug 10, 2000
Aug 10, 2000
449
} else if (fresh) {
May 22, 2013
May 22, 2013
450
451
452
453
454
fresh = FALSE;
do {
firstcode = oldcode = GetCode(src, code_size, FALSE);
} while (firstcode == clear_code);
return firstcode;
Aug 10, 2000
Aug 10, 2000
455
456
}
if (sp > stack)
May 22, 2013
May 22, 2013
457
return *--sp;
Aug 10, 2000
Aug 10, 2000
458
459
while ((code = GetCode(src, code_size, FALSE)) >= 0) {
May 22, 2013
May 22, 2013
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
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
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];
if (code == table[0][code])
RWSetMsg("circular table entry BIG ERROR");
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
529
530
531
532
533
534
}
return code;
}
static Image *
ReadImage(SDL_RWops * src, int len, int height, int cmapSize,
May 22, 2013
May 22, 2013
535
536
unsigned char cmap[3][MAXCOLORMAPSIZE],
int gray, int interlace, int ignore)
Aug 10, 2000
Aug 10, 2000
537
538
539
540
541
542
543
{
Image *image;
unsigned char c;
int i, v;
int xpos = 0, ypos = 0, pass = 0;
/*
May 22, 2013
May 22, 2013
544
** Initialize the compression routines
Aug 10, 2000
Aug 10, 2000
545
546
*/
if (!ReadOK(src, &c, 1)) {
May 22, 2013
May 22, 2013
547
548
RWSetMsg("EOF / read error on image data");
return NULL;
Aug 10, 2000
Aug 10, 2000
549
550
}
if (LWZReadByte(src, TRUE, c) < 0) {
May 22, 2013
May 22, 2013
551
552
RWSetMsg("error reading image");
return NULL;
Aug 10, 2000
Aug 10, 2000
553
554
}
/*
May 22, 2013
May 22, 2013
555
** If this is an "uninteresting picture" ignore it.
Aug 10, 2000
Aug 10, 2000
556
557
*/
if (ignore) {
May 22, 2013
May 22, 2013
558
559
560
while (LWZReadByte(src, FALSE, c) >= 0)
;
return NULL;
Aug 10, 2000
Aug 10, 2000
561
562
563
564
}
image = ImageNewCmap(len, height, cmapSize);
for (i = 0; i < cmapSize; i++)
May 22, 2013
May 22, 2013
565
566
ImageSetCmap(image, i, cmap[CM_RED][i],
cmap[CM_GREEN][i], cmap[CM_BLUE][i]);
Aug 10, 2000
Aug 10, 2000
567
568
569
while ((v = LWZReadByte(src, FALSE, c)) >= 0) {
#ifdef USED_BY_SDL
May 22, 2013
May 22, 2013
570
((Uint8 *)image->pixels)[xpos + ypos * image->pitch] = v;
Aug 10, 2000
Aug 10, 2000
571
#else
May 22, 2013
May 22, 2013
572
image->data[xpos + ypos * len] = v;
Aug 10, 2000
Aug 10, 2000
573
#endif
May 22, 2013
May 22, 2013
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
612
++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
613
614
615
616
617
618
619
620
621
622
623
624
}
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
625
return(0);
Aug 10, 2000
Aug 10, 2000
626
627
628
629
630
}
/* Load a GIF type image from an SDL datasource */
SDL_Surface *IMG_LoadGIF_RW(SDL_RWops *src)
{
May 22, 2013
May 22, 2013
631
return(NULL);
Aug 10, 2000
Aug 10, 2000
632
633
634
}
#endif /* LOAD_GIF */
Nov 10, 2009
Nov 10, 2009
635
636
#endif /* !defined(__APPLE__) || defined(SDL_IMAGE_USE_COMMON_BACKEND) */