fixed gfximage_save_jpeg function call
[swftools.git] / lib / gfximage.h
1 #ifndef __gfximage_h__
2 #define __gfximage_h__
3
4 #include "gfxdevice.h"
5
6 void gfximage_save_jpeg(gfximage_t*image, const char*filename, int quality);
7 void gfximage_save_png(gfximage_t*image, const char*filename);
8 gfximage_t* gfximage_rescale(gfximage_t*image, int newwidth, int newheight);
9
10 #endif