]> git.draconx.ca Git - liblbx.git/blob - src/image.h
liblbx: Add support for "chunked" images.
[liblbx.git] / src / image.h
1 #ifndef LBXIMG_H_
2 #define LBXIMG_H_
3
4 #include <stdio.h>
5
6 typedef struct lbx_image LBX_IMG;
7 struct lbx_file_ops;
8
9 struct lbx_colour {
10         unsigned char red;
11         unsigned char green;
12         unsigned char blue;
13         unsigned char active;
14 };
15
16 struct lbx_imginfo {
17         unsigned short width, height;
18         unsigned char  nframes, loopstart, chunk;
19         int palettesz, looping;
20 };
21
22 LBX_IMG *lbximg_open(void *f, const struct lbx_file_ops *fops,
23                      int (*destructor)(void *));
24 LBX_IMG *lbximg_fopen(FILE *f);
25 int      lbximg_close(LBX_IMG *img);
26
27 unsigned char **lbximg_getframe(LBX_IMG *img, int frame);
28 unsigned char **lbximg_getmask(LBX_IMG *img);
29
30 int lbximg_loadpalette(void *f, const struct lbx_file_ops *fops,
31                        struct lbx_colour palette[static 256]);
32 int lbximg_getpalette(LBX_IMG *img, struct lbx_colour palette[static 256]);
33
34 void lbximg_getinfo(LBX_IMG *img, struct lbx_imginfo *info);
35
36 #endif