From f4e9809805ebc951996ae45e698fd6d74e348c7a Mon Sep 17 00:00:00 2001 From: kramm Date: Sun, 2 Feb 2003 20:05:06 +0000 Subject: [PATCH] added support for 32 bit images with transparency. --- src/png2swf.c | 43 ++++++++++++++++++++++++++++++++++++++----- 1 file changed, 38 insertions(+), 5 deletions(-) diff --git a/src/png2swf.c b/src/png2swf.c index 927504e..578edfd 100644 --- a/src/png2swf.c +++ b/src/png2swf.c @@ -42,7 +42,7 @@ TAG *MovieStart(SWF * swf, int framerate, int dx, int dy) memset(swf, 0x00, sizeof(SWF)); - swf->fileVersion = 4; + swf->fileVersion = 5; swf->frameRate = (25600 / framerate); swf->movieSize.xmax = dx * 20; swf->movieSize.ymax = dy * 20; @@ -50,6 +50,7 @@ TAG *MovieStart(SWF * swf, int 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; swf_SetRGB(t, &rgb); return t; @@ -511,6 +512,8 @@ TAG *MovieAddFrame(SWF * swf, TAG * t, char *sname, int id) int i,s=0; int x,y; int pos=0; + int opaque=0; + int transparent=0; /* in case for mode 2, the following also performs 24->32 bit conversion */ for(y=0;yid = ST_DEFINEBITSJPEG3; + } + else +#endif + { + swf_SetLosslessBits(t, header.width, header.height, data2, BMF_32BIT); + } free(data2); } else { @@ -610,7 +643,7 @@ TAG *MovieAddFrame(SWF * swf, TAG * t, char *sname, int id) free(data2); } - t = swf_InsertTag(t, ST_DEFINESHAPE); + t = swf_InsertTag(t, ST_DEFINESHAPE3); swf_ShapeNew(&s); swf_GetMatrix(NULL, &m); @@ -636,14 +669,14 @@ TAG *MovieAddFrame(SWF * swf, TAG * t, char *sname, int id) swf_ShapeSetEnd(t); t = swf_InsertTag(t, ST_REMOVEOBJECT2); - swf_SetU16(t, 1); // depth + swf_SetU16(t, 50); // depth t = swf_InsertTag(t, ST_PLACEOBJECT2); swf_GetMatrix(NULL, &m); m.tx = (swf->movieSize.xmax - (int) header.width * 20) / 2; m.ty = (swf->movieSize.ymax - (int) header.height * 20) / 2; - swf_ObjectPlace(t, id + 1, 1, &m, NULL, NULL); + swf_ObjectPlace(t, id + 1, 50, &m, NULL, NULL); t = swf_InsertTag(t, ST_SHOWFRAME); -- 1.7.10.4