X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;ds=sidebyside;f=lib%2Fmodules%2Fswfdump.c;h=ebac1a33ee83eb3bb6e5195b313f93b6737c2f50;hb=78235556f27a7dc3928cc88aef6fba0a5f4b03d9;hp=92f18023acc1dcc6f8c1728bdf212776580c76aa;hpb=f908dd0674bc6cd66e73cd73f9d8073a992f0528;p=swftools.git diff --git a/lib/modules/swfdump.c b/lib/modules/swfdump.c index 92f1802..ebac1a3 100644 --- a/lib/modules/swfdump.c +++ b/lib/modules/swfdump.c @@ -43,6 +43,7 @@ void swf_DumpFont(SWFFONT * font) printf("Version: %d\n", font->version); printf("name: %s\n", font->name); printf("characters: %d\n", font->numchars); + printf("biggest mapped ascii value: %d\n", font->maxascii); printf("layout: %s\n", font->layout?"yes":"no"); if(font->layout) { @@ -53,6 +54,9 @@ void swf_DumpFont(SWFFONT * font) printf(" kerning records:%d\n", font->layout->kerningcount); printf(" kerning records: (not shown)\n"); } + printf("style: %d\n", font->style); + printf("encoding: %d\n", font->encoding); + printf("language: %d\n", font->language); } char* swf_TagGetName(TAG*tag) @@ -161,6 +165,8 @@ char* swf_TagGetName(TAG*tag) return "VIDEOFRAME"; case ST_DEFINEFONTINFO2: return "DEFINEFONTINFO2"; + case ST_FREEALL: + return "FREEALL"; case ST_MX4: return "MX4"; }