X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=src%2Fswfbbox.c;h=97e3869974819243ab5c6c26bd4ef824a490915f;hb=3a83195a8df859d847300bd1bf0e03a7354ded79;hp=52296f81ba5e923a7a458d4e90dc14434a98b78f;hpb=8abfd308ae4bb43437e79e716b58d54e66f254f9;p=swftools.git diff --git a/src/swfbbox.c b/src/swfbbox.c index 52296f8..97e3869 100644 --- a/src/swfbbox.c +++ b/src/swfbbox.c @@ -46,9 +46,9 @@ static struct options_t options[] = { {"e", "expand"}, {"O", "optimize"}, {"S", "swifty"}, +{"c", "clip"}, {"o", "output"}, {"v", "verbose"}, -{"c", "clip"}, {"V", "version"}, {0,0} }; @@ -122,6 +122,7 @@ void args_callback_usage(char *name) printf("-e , --expand Write out a new file using the recalculated bounding box\n"); printf("-O , --optimize Recalculate bounding boxes\n"); printf("-S , --swifty Print out transformed bounding boxes\n"); + printf("-c , --clip Clip bounding boxes to movie size\n"); printf("-o , --output Set output filename to (for -O)\n"); printf("-v , --verbose Be more verbose\n"); printf("-V , --version Print program version and exit\n"); @@ -232,8 +233,9 @@ static placement_t* readPlacements(SWF*swf) while(tag) { if(tag->id == ST_PLACEOBJECT || tag->id == ST_PLACEOBJECT2) { SWFPLACEOBJECT*po = rfx_alloc(sizeof(SWFPLACEOBJECT)); + int id; swf_GetPlaceObject(tag, po); - int id = po->id; + id = po->id; if(po->move) { fprintf(stderr, "MOVE tags not supported with -c"); } @@ -354,7 +356,7 @@ static void textcallback(void*self, int*chars, int*xpos, int nr, int fontid, int /* not tested yet- the matrix/fontsize calculation is probably all wrong */ int x = xstart + xpos[t]; int y = ystart; - int ch; + int ch = 0; SRECT newglyphbbox, glyphbbox = font->layout->bounds[chars[t]]; MATRIX m = bounds->m; SPOINT p;