fixed bug in jpeg2000 decoding
[swftools.git] / src / font2swf.c
index 3eee844..972f294 100644 (file)
@@ -30,10 +30,13 @@ static char * filename = 0;
 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}
@@ -53,6 +56,14 @@ 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;
+    }
     else if(!strcmp(name, "a")) {
        all = 1;
        return 0;
@@ -92,7 +103,11 @@ 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);
 
     swf_WriteFont(font, outfile);
     swf_FontFree(font);