X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=src%2Fpng2swf.c;h=609deca803e8a1888bc0f3240ea4319ef382e7a6;hb=f3bc04e70501213ea1d9d2aa22d5c2fa550dab3f;hp=0d7e1a6d9882a8754da72c806790e396d46b07c4;hpb=25e39f1bcfd11604dcb56791301248878b720d70;p=swftools.git diff --git a/src/png2swf.c b/src/png2swf.c index 0d7e1a6..609deca 100644 --- a/src/png2swf.c +++ b/src/png2swf.c @@ -76,7 +76,7 @@ TAG *MovieStart(SWF * swf, float framerate, int dx, int dy) t = swf->firstTag = swf_InsertTag(NULL, ST_SETBACKGROUNDCOLOR); rgb.r = rgb.g = rgb.b = rgb.a = 0x00; - //rgb.g = 0xff; //<--- handy for testing alpha conversion + rgb.g = 0xff; //<--- handy for testing alpha conversion swf_SetRGB(t, &rgb); return t; @@ -179,7 +179,7 @@ int png_read_header(FILE*fi, struct png_header*header) header->width = REVERSESWAP32(*(U32*)&data[0]); header->height = REVERSESWAP32(*(U32*)&data[4]); a = data[8]; // should be 8 - b = data[9]; // should be 3(indexed) or 2(rgb) + b = data[9]; // should be 3(indexed), 2(rgb), 0(grayscale) or 6(truecolor+alpha) c = data[10]; // compression mode (0) f = data[11]; // filter mode (0) @@ -513,7 +513,7 @@ TAG *MovieAddFrame(SWF * swf, TAG * t, char *sname, int id) } if(!strncmp(tagid, "PLTE", 4)) { palette = data; - palettelen = len/bypp; + palettelen = len/3; data = 0; //don't free data if(VERBOSE(2)) printf("%d colors in palette\n", palettelen); @@ -525,9 +525,9 @@ TAG *MovieAddFrame(SWF * swf, TAG * t, char *sname, int id) data = 0; //don't free data if(VERBOSE(2)) printf("found %d alpha colors\n", alphapalettelen); - } else if(header.mode == 0) { + } else if(header.mode == 0 || header.mode == 2) { int t; - if(header.mode == 3) { // palette or grayscale? + if(header.mode == 2) { // palette or grayscale? alphacolor[0] = data[1]; alphacolor[1] = data[3]; alphacolor[2] = data[5]; @@ -605,10 +605,22 @@ TAG *MovieAddFrame(SWF * swf, TAG * t, char *sname, int id) } else { old = &data2[(y-1)*header.width*4]; } - if(header.mode==6) + if(header.mode==6) { applyfilter4(mode, src, old, dest, header.width); - else if(header.mode==2) + } else if(header.mode==2) { applyfilter3(mode, src, old, dest, header.width); + /* replace alpha color */ + if(hasalphacolor) { + int x; + for(x=0;x Set movie framerate (frames per second)\n"); printf("-o , --output Set name for SWF output file.\n"); printf("-z , --zlib Enable Flash 6 (MX) Zlib Compression\n"); + printf("-T , --flashversion Set the flash version to generate\n"); printf("-X , --pixel Force movie width to (default: autodetect)\n"); printf("-Y , --pixel Force movie height to (default: autodetect)\n"); printf("-v , --verbose Set verbose level (0=quiet, 1=default, 2=debug)\n");