X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fmodules%2Fswfdump.c;fp=lib%2Fmodules%2Fswfdump.c;h=ebac1a33ee83eb3bb6e5195b313f93b6737c2f50;hb=dda225e97920e82bcf451c14e0f527d9554c4cc3;hp=01b1eb22bdae765b456b88d18b6927a9f24d1d83;hpb=f14390c59ccf526e32cf4e3c12fb0cefe6bff8ab;p=swftools.git diff --git a/lib/modules/swfdump.c b/lib/modules/swfdump.c index 01b1eb2..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)