-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgifdec.cpp
41 lines (27 loc) · 890 Bytes
/
gifdec.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
#include "gifdec.hpp"
typedef struct {
GifByteType * image;
int size;
int fileHandle;
} ImageData;
int gif_file_input(GifFileType * gif, GifByteType * buf, int len) {
ImageData* imageData = (ImageData*) gif->UserData;
int readBytes = 0;
for(int i = imageData->fileHandle; i<(imageData->fileHandle+len); i++) {
if(imageData->size>i) {
buf[readBytes] = (GifByteType)((GifByteType*)imageData->image)[i];
readBytes++;
} else {
break;
}
}
imageData->fileHandle += readBytes;
return readBytes;
}
GifFileType * gif(GifByteType * gifByteType, int size, int *Error) {
ImageData* imageData = new ImageData;
imageData->image = gifByteType;
imageData->size = size;
imageData->fileHandle = 0;
return DGifOpen(imageData,gif_file_input,Error);
}