fixed bug in jpeg2000 decoding
[swftools.git] / src / font2swf.c
index 36ac40b..972f294 100644 (file)
@@ -31,10 +31,12 @@ static char * destfilename = "output.swf";
 static int all=0;
 static int verbose=0;
 static char * fontname = 0;
+static char config_flashtype = 0;
 
 static struct options_t options[] = {
 {"h", "help"},
 {"v", "verbose"},
+{"T", "flashtype"},
 {"o", "output"},
 {"V", "version"},
 {0,0}
@@ -54,6 +56,10 @@ int args_callback_option(char*name,char*val)
        verbose ++;
        return 0;
     }
+    else if(!strcmp(name, "T")) {
+       config_flashtype=1;
+       return 0;
+    }
     else if(!strcmp(name, "n")) {
        fontname = val;
        return 1;
@@ -79,7 +85,6 @@ void args_callback_usage(char *name)
     printf("\n");
     printf("-h , --help                    Print short help message and exit\n");
     printf("-v , --verbose                 Be verbose. Use more than one -v for greater effect.\n");
-    printf("-n , --name <name>             Name of the font (class) in the output file\n");
     printf("-o , --output <filename>       Write output to file <filename>.\n");
     printf("-V , --version                 Print version info and exit\n");
     printf("\n");
@@ -98,7 +103,8 @@ static void convertFont(char*infile, char*outfile)
 {
     SWFFONT * font;
     
-    font = swf_LoadFont(infile);
+    font = swf_LoadFont(infile, config_flashtype);
+    swf_FontCreateAlignZones(font);
 
     if(fontname)
         font->name = strdup(fontname);