Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041 #ifndef __CXUTILS_IMAGES_PNG_HANDLER__H
00042 #define __CXUTILS_IMAGES_PNG_HANDLER__H
00043
00044 #include "cxutils/cxbase.h"
00045
00046 namespace CxUtils
00047 {
00048 namespace PNG
00049 {
00067 CX_UTILS_DLL int DecompressImage(const unsigned char* png,
00068 const unsigned int pngSize,
00069 unsigned char** image,
00070 unsigned short* width,
00071 unsigned short* height,
00072 unsigned char* channels);
00092 CX_UTILS_DLL int CompressImage(const unsigned short width,
00093 const unsigned short height,
00094 const unsigned char channels,
00095 const unsigned char* image,
00096 unsigned char** png,
00097 unsigned int* pngBufferSize,
00098 unsigned int* pngSize);
00099 }
00100 }
00101
00102 #endif
00103