]> git.draconx.ca Git - liblbx.git/blob - src/imgoutput.h
Trivial manual fixes.
[liblbx.git] / src / imgoutput.h
1 #ifndef IMGOUTPUT_H_
2 #define IMGOUTPUT_H_
3
4 #include "image.h"
5
6 typedef int img_output_func(FILE *f, const char *filename,
7                             unsigned width, unsigned height,
8                             unsigned char *pixels, unsigned char *pixel_mask,
9                             struct lbx_colour *palette);
10
11 img_output_func img_output_pbm, img_output_ppm, img_output_pam;
12 img_output_func img_output_png;
13
14 _Bool img_is_masked(unsigned char *mask, unsigned width, unsigned height);
15
16 #endif