fixed bug in jpeg2000 decoding
[swftools.git] / lib / gfximage.h
1 #ifndef __gfximage_h__
2 #define __gfximage_h__
3
4 #include "gfxdevice.h"
5
6 gfximage_t*gfximage_new(int width, int height);
7 void gfximage_save_jpeg(gfximage_t*image, const char*filename, int quality);
8 void gfximage_save_png(gfximage_t*image, const char*filename);
9 gfximage_t* gfximage_rescale(gfximage_t*image, int newwidth, int newheight);
10 void gfximage_free(gfximage_t*b);
11
12 #endif