#include #define STB_IMAGE_IMPLEMENTATION #define STBI_NO_STDIO #include "stb_image.h" #include static unsigned char * miniz_stbi_compress(unsigned char *data, int data_len, int *out_len, int quality) { mz_ulong maxsz = mz_compressBound(data_len); unsigned char *packed = (unsigned char*)malloc(maxsz); if(packed) { int result = mz_compress2(packed, &maxsz, data, data_len, quality); if(result) { free(packed); return NULL; } } return packed; } #define STB_IMAGE_WRITE_IMPLEMENTATION #define STBIW_ZLIB_COMPRESS miniz_stbi_compress #include "stb_image_write.h" #define STB_IMAGE_RESIZE_IMPLEMENTATION #define STBIR_ASSERT(x) assert(x) #include "stb_image_resize.h"