X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fmodules%2Fswfbits.c;h=0af32c7a007c0449dfd9f1deb210f36d1a652c69;hb=764b4382266a88ea82758d51db38107eba68e866;hp=bc1e0f801ad285c6d3d4538a010efef45324e261;hpb=a694b731da2eed7c0302a78386f03f8c7ca9869f;p=swftools.git diff --git a/lib/modules/swfbits.c b/lib/modules/swfbits.c index bc1e0f8..0af32c7 100644 --- a/lib/modules/swfbits.c +++ b/lib/modules/swfbits.c @@ -37,6 +37,30 @@ int swf_ImageHasAlpha(RGBA*img, int width, int height) return hasalpha; } +int swf_ImageGetNumberOfPaletteEntries2(RGBA*_img, int width, int height) +{ + int len = width*height; + int t; + U32* img = (U32*)_img; + U32 color1 = img[0]; + U32 color2 = 0; + for(t=1;tclient_data; - swf_SetTagPos(tag, 2); + if (tag->id == ST_DEFINEBITSJPEG3) { + swf_SetTagPos(tag, 6); + } else { + swf_SetTagPos(tag, 2); + } cinfo->src->bytes_in_buffer = 0; } static boolean tag_fill_input_buffer(struct jpeg_decompress_struct *cinfo) @@ -424,16 +454,22 @@ RGBA *swf_JPEG2TagToImage(TAG * tag, int *width, int *height) int y; *width = 0; *height = 0; + int offset = 0; + int oldtaglen = 0; if (tag->id == ST_DEFINEBITSJPEG) { - fprintf(stderr, - "rfxswf: extracting from definebitsjpeg not yet supported"); + fprintf(stderr, "rfxswf: extracting from definebitsjpeg not yet supported\n"); return 0; } if (tag->id == ST_DEFINEBITSJPEG3) { - fprintf(stderr, - "rfxswf: extracting from definebitsjpeg3 not yet supported"); +#ifdef HAVE_ZLIB + offset = swf_GetU32(tag); + oldtaglen = tag->len; + tag->len = offset+6; +#else + fprintf(stderr, "rfxswf: extracting from definebitsjpeg3 not possible: no zlib\n"); return 0; +#endif } cinfo.err = jpeg_std_error(&jerr); @@ -474,6 +510,30 @@ RGBA *swf_JPEG2TagToImage(TAG * tag, int *width, int *height) jpeg_finish_decompress(&cinfo); jpeg_destroy_decompress(&cinfo); + +#ifdef HAVE_ZLIB + if(offset) { + U32 datalen = cinfo.output_width*cinfo.output_height; + U8* alphadata = (U8*)rfx_alloc(datalen); + int error; + tag->len = oldtaglen; + swf_SetTagPos(tag, 6+offset); + error = uncompress(alphadata, &datalen, &tag->data[tag->pos], tag->len - tag->pos); + if (error != Z_OK) { + fprintf(stderr, "rfxswf: Zlib error %d while extracting definejpeg3\n", error); + return 0; + } + for(y=0;yid = ST_DEFINEBITSLOSSLESS; } else { tag->id = ST_DEFINEBITSLOSSLESS2; - /* TODO: premultiply alpha? */ + swf_PreMultiplyAlpha(data, width, height); } num = swf_ImageGetNumberOfPaletteEntries(data, width, height, 0); if(num>1 && num<=256) { @@ -822,14 +893,20 @@ RGBA *swf_DefineLosslessBitsTagToImage(TAG * tag, int *dwidth, int *dheight) } } else { for (x = 0; x < width; x++) { - /* TODO: premultiply alpha? - dest[pos2].r = (data[pos + 1]*255)/data[pos+0]; - dest[pos2].g = (data[pos + 2]*255)/data[pos+0]; - dest[pos2].b = (data[pos + 3]*255)/data[pos+0]; - */ - dest[pos2].r = data[pos + 1]; - dest[pos2].g = data[pos + 2]; - dest[pos2].b = data[pos + 3]; + /* TODO: is un-premultiplying alpha the right thing to do? + dest[pos2].r = data[pos + 1]; + dest[pos2].g = data[pos + 2]; + dest[pos2].b = data[pos + 3];*/ + int alpha = data[pos+0]; + if(alpha) { + dest[pos2].r = ((int)data[pos + 1]*255)/alpha; + dest[pos2].g = ((int)data[pos + 2]*255)/alpha; + dest[pos2].b = ((int)data[pos + 3]*255)/alpha; + } else { + dest[pos2].r = data[pos + 1]; + dest[pos2].g = data[pos + 2]; + dest[pos2].b = data[pos + 3]; + } dest[pos2].a = data[pos + 0]; //alpha pos2++; pos += 4; @@ -976,6 +1053,9 @@ TAG* swf_AddImage(TAG*tag, int bitid, RGBA*mem, int width, int height, int quali RGBA *swf_ExtractImage(TAG * tag, int *dwidth, int *dheight) { RGBA *img; + + swf_SetTagPos(tag, 2); // id is 2 bytes + if (tag->id == ST_DEFINEBITSJPEG || tag->id == ST_DEFINEBITSJPEG2 || tag->id == ST_DEFINEBITSJPEG3) { #ifdef HAVE_JPEGLIB @@ -1019,12 +1099,13 @@ void swf_RemoveJPEGTables(SWF * swf) tag = swf->firstTag; while (tag) { if (tag->id == ST_DEFINEBITSJPEG) { - void *data = rfx_alloc(tag->len); + int len = tag->len; + void *data = rfx_alloc(len); swf_GetBlock(tag, data, tag->len); swf_ResetTag(tag, ST_DEFINEBITSJPEG2); swf_SetBlock(tag, &((U8*)data)[0], 2); //id swf_SetBlock(tag, tables_tag->data, tables_tag->len); - swf_SetBlock(tag, &((U8*)data)[2], tag->len-2); + swf_SetBlock(tag, &((U8*)data)[2], len-2); free(data); } tag = tag->next; @@ -1097,7 +1178,6 @@ static scale_lookup_t**make_scale_lookup(int width, int newwidth) lblockx[newwidth] = p_x; return lblockx; } - RGBA* swf_ImageScale(RGBA*data, int width, int height, int newwidth, int newheight) { int x,y; @@ -1108,6 +1188,12 @@ RGBA* swf_ImageScale(RGBA*data, int width, int height, int newwidth, int newheig if(newwidth<1 || newheight<1) return 0; + /* this is bad because this scaler doesn't yet handle monochrome + images with 2 colors in a way that the final image hasn't more + than 256 colors */ + if(swf_ImageGetNumberOfPaletteEntries2(data, width, height) == 2) + fprintf(stderr, "Warning: scaling monochrome image\n"); + tmpline = (rgba_int_t*)malloc(width*sizeof(rgba_int_t)); newdata = (RGBA*)malloc(newwidth*newheight*sizeof(RGBA));