X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=src%2Fswfbbox.c;h=bb0322ee5367107220f634488e6af2c209db5f58;hb=077c474d859547ebe1cdc40c4efeeae3e779ea93;hp=b8facd01abe99a9765974e4713b714e43e7c1ee8;hpb=3cba8ce3ff7563a4c8db25b89e48f9770db509cf;p=swftools.git diff --git a/src/swfbbox.c b/src/swfbbox.c index b8facd0..bb0322e 100644 --- a/src/swfbbox.c +++ b/src/swfbbox.c @@ -40,12 +40,12 @@ static int expand = 1; static struct options_t options[] = { {"h", "help"}, -{"O", "optimize"}, -{"S", "swifty"}, -{"o", "output"}, {"b", "bbox"}, {"B", "newbbox"}, {"e", "expand"}, +{"O", "optimize"}, +{"S", "swifty"}, +{"o", "output"}, {"v", "verbose"}, {"V", "version"}, {0,0} @@ -106,13 +106,15 @@ int args_callback_longoption(char*name,char*val) void args_callback_usage(char *name) { printf("\n"); - printf("Usage: %s [-OSe] file.swf\n", name); + printf("Usage: %s [-OS] file.swf\n", name); printf("\n"); printf("-h , --help Print help and exit\n"); + printf("-b , --bbox Show movie bounding box (default)\n"); + printf("-B , --newbbox Show recalculated (optimized/expanded) bounding box\n"); + 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("-O , --optimize Recalculate bounding boxes and write new file\n"); - printf("-e , --expand Recalculate main bounding box and write new file\n"); - printf("-o , --output Set output filename to (for -O/-e)\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"); printf("\n"); @@ -240,8 +242,8 @@ static void textcallback(void*self, int*chars, int*xpos, int nr, int fontid, int SRECT newglyphbbox, glyphbbox = font->layout->bounds[chars[t]]; MATRIX m = bounds->m; - if(ch < font->numchars && font->glyph2ascii) { - ch = font->glyph2ascii[ch]; + if(chars[t] < font->numchars && font->glyph2ascii) { + ch = font->glyph2ascii[chars[t]]; } m.sx = (m.sx * fontsize) / 1024;