From 70b7f16b7fbaa021019ec567d5a97b0b3fdf0f9b Mon Sep 17 00:00:00 2001 From: Matthias Kramm Date: Tue, 30 Mar 2010 17:00:05 -0700 Subject: [PATCH] improved png compression --- lib/png.c | 309 +++++++++++++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 269 insertions(+), 40 deletions(-) diff --git a/lib/png.c b/lib/png.c index 1738151..7190553 100644 --- a/lib/png.c +++ b/lib/png.c @@ -23,6 +23,7 @@ #include #include #include +#include #ifdef EXPORT #undef EXPORT @@ -830,11 +831,10 @@ static colornum_t* getColors(COL*image, int size, int*num) return colors; } -static COL* getOptimalPalette(COL*image, int size, int palettesize) +static void getOptimalPalette(COL*image, int size, int palettesize, COL*palette) { int num; - COL* ret = malloc(sizeof(COL)*palettesize); - memset(ret, 0, sizeof(COL)*palettesize); + memset(palette, 0, sizeof(COL)*256); colornum_t*colors = getColors(image, size, &num); assert(palettesize<=256); @@ -846,12 +846,12 @@ static COL* getOptimalPalette(COL*image, int size, int palettesize) the image anyway, we are done */ int t; for(t=0;t>8; - ret[t].b = colors[t].color>>16; - ret[t].a = 255; + palette[t].r = colors[t].color; + palette[t].g = colors[t].color>>8; + palette[t].b = colors[t].color>>16; + palette[t].a = 255; } - return ret; + return; } if(num>2048) { @@ -928,22 +928,20 @@ static COL* getOptimalPalette(COL*image, int size, int palettesize) free(belongsto); free(colors); for(t=0;t>8; - ret[t].b = centers[t].color>>16; - ret[t].a = 255; + palette[t].r = centers[t].color; + palette[t].g = centers[t].color>>8; + palette[t].b = centers[t].color>>16; + palette[t].a = 255; } free(centers); - return ret; } static int sqr(const int x) {return x*x;} -static void quantizeImage(unsigned char*_image, int size, int numcolors, unsigned char**newimage, COL**palette) +static void png_quantize_image(unsigned char*_image, int size, int numcolors, unsigned char**newimage, COL*palette) { COL*image = (COL*)_image; - COL*pal= getOptimalPalette(image, size, numcolors); - *palette = pal; + getOptimalPalette(image, size, numcolors, palette); *newimage = (unsigned char*)malloc(size); int t; for(t=0;t> 17) ^ col32; + hash ^= ((hash>>8) + 1) ^ hash; + return hash; +} + +static int png_get_number_of_palette_entries(COL*img, int width, int height, COL*palette, char*has_alpha) +{ + int len = width*height; + int t; + int palsize = 0; + int size[256]; + int palette_overflow = 0; + u32 lastcol32 = 0; + + memset(size, 0, sizeof(size)); + + u32*pal = (u32*)malloc(65536*sizeof(u32)); + int*count = (int*)malloc(65536*sizeof(int)); + + assert(sizeof(COL)==sizeof(u32)); + assert(width && height); + + lastcol32 = (*(u32*)&img[0])^0xffffffff; // don't match + + for(t=0;t0?5:2; //don't apply y-direction filter in first line + int f; + int best_nr = 0; + int best_energy = INT_MAX; + int w = width*(bpp/8); + unsigned char* pairs = malloc(8192); + assert(bpp==8 || bpp==32); + for(f=0;f>3; + int b = 1<<(v&7); + if(!pairs[p]&b) { + pairs[p]|=b; + different_pairs ++; + } + } + int energy = different_pairs; + if(energy=2) continue; // don't do y direction filters in the first row line[0]=filtermode; //filter type if(bpp==8) - filter_line8(filtermode, line+1, &data[y*srcwidth], width); + png_apply_specific_filter_8(filtermode, line+1, &data[y*srcwidth], width); else - filter_line32(filtermode, line+1, &data[y*srcwidth], width); + png_apply_specific_filter_32(filtermode, line+1, &data[y*srcwidth], width); int size = test_line(&zs, line, linelen); if(size < bestsize) { @@ -1377,7 +1594,18 @@ EXPORT void savePNG(const char*filename, unsigned char*data, int width, int heig } idatsize += compress_line(&zs, bestline, linelen, fi); } - free(line);free(bestline); + free(bestline); +#else + for(y=0;y