]> git.draconx.ca Git - liblbx.git/blob - src/image.h
liblbx: Parameterise I/O functions for image handling.
[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 };
14
15 struct lbx_imginfo {
16         unsigned int width, height;
17         unsigned int nframes, loopstart;
18         int palettesz;
19         int 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(FILE *f, struct lbx_colour palette[static 256]);
31 int lbximg_getpalette(LBX_IMG *img, struct lbx_colour palette[static 256]);
32
33 void lbximg_getinfo(LBX_IMG *img, struct lbx_imginfo *info);
34
35 #endif