Umasoft
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Groups Pages
jpegbase.h
1 // (c) by Stefan Roettger
2 
3 #ifndef JPEGBASE_H
4 #define JPEGBASE_H
5 
6 namespace jpegbase {
7 
8 unsigned char *decompressJPEGimage(unsigned char *data,unsigned int bytes,int *width,int *height,int *components);
9 void compressJPEGimage(unsigned char *image,int width,int height,int components,float quality,unsigned char **data,unsigned int *bytes);
10 
11 }
12 
13 #endif