added matrix argument to swf_SetDefineText().
[swftools.git] / lib / modules / swftext.c
index 55fe659..0adaf2b 100644 (file)
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
 
+static U32 readUTF8char(U8**text)
+{
+    U32 c = 0;
+    if(!(*(*text) & 0x80))
+       return *((*text)++);
+
+    /* 0000 0080-0000 07FF   110xxxxx 10xxxxxx */
+    if(((*text)[0] & 0xe0) == 0xc0 && (*text)[1])  
+    {
+       c = ((*text)[0] & 0x1f) << 6 | ((*text)[1] & 0x3f);
+       (*text) += 2;
+       return c;
+    }
+    /* 0000 0800-0000 FFFF   1110xxxx 10xxxxxx 10xxxxxx */
+    if(((*text)[0] & 0xf0) == 0xe0 && (*text)[1] && (*text)[2])
+    {
+       c = ((*text)[0] & 0x0f) << 12 | ((*text)[1] & 0x3f) << 6 | ((*text)[2] & 0x3f);
+       (*text) += 3;
+       return c;
+    }
+    /* 0001 0000-001F FFFF   11110xxx 10xxxxxx 10xxxxxx 10xxxxxx */
+    if(((*text)[0] & 0xf8) == 0xf0 && (*text)[1] && (*text)[2] && (*text)[3] )  
+    {
+       c = ((*text)[0] & 0x07) << 18 | ((*text)[1] & 0x3f) << 12 | ((*text)[2] & 0x3f)<<6 | ((*text)[3] & 0x3f);
+       (*text) += 4;
+       return c;
+    }
+    /* 0020 0000-03FF FFFF   111110xx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx */
+    if(((*text)[0] & 0xfc) == 0xf8 && (*text)[1] && (*text)[2] && (*text)[3] && (*text)[4])  
+    {
+       c = ((*text)[0] & 0x03) << 24 | ((*text)[1] & 0x3f) << 18 | ((*text)[2] & 0x3f)<<12 | ((*text)[3] & 0x3f) << 6 | ((*text)[4] & 0x3f);
+       (*text) += 5;
+       return c;
+    }
+    /* 0400 0000-7FFF FFFF   1111110x 10xxxxxx ... 10xxxxxx */
+    if(((*text)[0] & 0xfe) == 0xfc && (*text)[1] && (*text)[2] && (*text)[3] && (*text)[4] && (*text)[5])  
+    {
+       c = ((*text)[0] & 0x01) << 30 | ((*text)[1] & 0x3f) << 24 | ((*text)[2] & 0x3f)<<18 | ((*text)[3] & 0x3f) << 12 | ((*text)[4] & 0x3f) << 6  | ((*text)[5] & 0x3f) << 6;
+       (*text) += 6;
+       return c;
+    }
+    return *((*text)++);
+}
+
 #define TF_TEXTCONTROL  0x80
 #define TF_HASFONT      0x08
 #define TF_HASCOLOR     0x04
@@ -57,22 +101,26 @@ int swf_FontEnumerate(SWF * swf,void (*FontCallback) (U16,U8*))
   n = 0;
 
   while (t)
-  { if (swf_GetTagID(t)==ST_DEFINEFONTINFO || swf_GetTagID(t)==ST_DEFINEFONTINFO2 ||
-         swf_GetTagID(t)==ST_DEFINEFONT2)
+  { 
+    if (swf_GetTagID(t)==ST_DEFINEFONT2 || swf_GetTagID(t)==ST_DEFINEFONT)
     { n++;
       if (FontCallback)
       { U16 id;
         int l;
         U8 s[257];
+       s[0] = 0;
         swf_SaveTagPos(t);
         swf_SetTagPos(t,0);
        
         id  = swf_GetU16(t);
-       if(swf_GetTagID(t) == ST_DEFINEFONT2)
+       if(swf_GetTagID(t) == ST_DEFINEFONT2 ||
+          swf_GetTagID(t) == ST_DEFINEFONTINFO ||
+          swf_GetTagID(t) == ST_DEFINEFONTINFO2) {
            swf_GetU16(t);
-        l   = swf_GetU8(t);
-        swf_GetBlock(t,s,l);
-        s[l] = 0;
+           l = swf_GetU8(t);
+            swf_GetBlock(t,s,l);
+            s[l] = 0;
+       }
 
         (FontCallback)(id,s); 
       
@@ -323,15 +371,18 @@ int swf_FontExtract_DefineFont2(int id,SWFFONT * font,TAG * tag)
 #define FEDTJ_MODIFY 0x02
 #define FEDTJ_CALLBACK 0x04
 
-int swf_FontExtract_DefineTextCallback(int id,SWFFONT * f,TAG * t,int jobs, 
-       void(*callback)(int*chars, int nr, int fontid))
+static int swf_FontExtract_DefineTextCallback(int id,SWFFONT * f,TAG * t,int jobs, 
+       void(*callback)(void*self, int*chars, int*ypos, int nr, int fontid, int fontsize, int xstart, int ystart, RGBA* color), void*self)
 { U16    cid;
   SRECT  r;
   MATRIX m;
-  U8     gbits, abits, flags;
-  int    fid;
+  U8     gbits, abits;
+  int    fid=0;
+  RGBA  color;
+  int   x=0,y=0;
+  int   fontsize=0;
 
-  fid = 0;
+  memset(&color, 0, sizeof(color));
 
   swf_SaveTagPos(t);
   swf_SetTagPos(t,0);
@@ -342,57 +393,77 @@ int swf_FontExtract_DefineTextCallback(int id,SWFFONT * f,TAG * t,int jobs,
   gbits = swf_GetU8(t);
   abits = swf_GetU8(t);
 
-  flags = swf_GetU8(t);
-  
-  while(flags)
+  while(1)
   { 
-    // FIXME: according to open-swf@macromedia.com, this is wrong.
-    // it should alternate textcontrol and text arrays, not
-    // rely on the high bit. (and length can be 0-255).
+    int flags,num;
+    flags = swf_GetU8(t);
+    if(!flags)
+       break;
+  
     if (flags&TF_TEXTCONTROL)
     { if (flags&TF_HASFONT) fid = swf_GetU16(t);
       if (flags&TF_HASCOLOR)
-      { swf_GetU8(t); // rgb
-        swf_GetU8(t);
-        swf_GetU8(t);
-        if (swf_GetTagID(t)==ST_DEFINETEXT2) swf_GetU8(t);
+      { color.r = swf_GetU8(t); // rgb
+        color.g = swf_GetU8(t);
+        color.b = swf_GetU8(t);
+        if (swf_GetTagID(t)==ST_DEFINETEXT2) color.a = swf_GetU8(t);
       }
-      if (flags&TF_HASXOFFSET) swf_GetS16(t);
-      if (flags&TF_HASYOFFSET) swf_GetS16(t);
-      if (flags&TF_HASFONT) swf_GetU16(t);
+      if (flags&TF_HASXOFFSET) x = swf_GetS16(t);
+      if (flags&TF_HASYOFFSET) y = swf_GetS16(t);
+      if (flags&TF_HASFONT) fontsize = swf_GetU16(t);
     }
-    else
+
+    num = swf_GetU8(t);
+    if(!num)
+       break;
+
     { int i;
       int buf[256];
-      for (i=0;i<flags;i++)
+      int advance[256];
+      int xpos = 0;
+      for (i=0;i<num;i++)
       { int glyph;
-        int adv;
+        int adv = 0;
+       advance[i] = xpos;
         glyph = swf_GetBits(t,gbits);
         adv = swf_GetBits(t,abits);
-        if (id==fid)                    // mitlesen ?
+       xpos+=adv;
+       
+       // <deprectated>
+       if (id==fid) {
           if (jobs&FEDTJ_PRINT) {
-           { int code = f->glyph2ascii[glyph];
+             int code = f->glyph2ascii[glyph];
              printf("%c",code);
          }
           if (jobs&FEDTJ_MODIFY)
-            /*if (!f->glyph[code].advance)*/ f->glyph[glyph].advance = adv;
-        }
+           f->glyph[glyph].advance = adv*20; //?
+        } else {
+            if (jobs&FEDTJ_PRINT) {
+               printf("?");
+           }
+       }
+       // </deprectated>
+
        buf[i] = glyph;
       }
       if ((id==fid)&&(jobs&FEDTJ_PRINT)) printf("\n");
       if (jobs&FEDTJ_CALLBACK)
-         callback(buf, flags, fid);
+         callback(self, buf, advance, num, fid, fontsize, x, y, &color);
+      x += xpos;
     }
-    flags = swf_GetU8(t);
   }
   
   swf_RestoreTagPos(t);
   return id;
 }  
+int swf_ParseDefineText(TAG * tag, void(*callback)(void*self, int*chars, int*ypos, int nr, int fontid, int fontsize, int xstart, int ystart, RGBA* color), void*self)
+{
+    return swf_FontExtract_DefineTextCallback(-1, 0, tag, FEDTJ_CALLBACK, callback, self);
+}
 
 int swf_FontExtract_DefineText(int id,SWFFONT * f,TAG * t,int jobs)
 {
-    return swf_FontExtract_DefineTextCallback(id,f,t,jobs,0);
+    return swf_FontExtract_DefineTextCallback(id,f,t,jobs,0,0);
 }
 
 int swf_FontExtract(SWF * swf,int id,SWFFONT * * font)
@@ -451,7 +522,7 @@ int swf_FontReduce(SWFFONT * f,FONTUSAGE * use)
   j = 0;
   for (i=0;i<f->numchars;i++)
     if (f->glyph[i].shape)
-    { if (f->glyph2ascii[i]<f->numchars&& 
+    { if (f->glyph2ascii[i]<f->maxascii&& 
            use->code[f->glyph2ascii[i]])
       { f->ascii2glyph[f->glyph2ascii[i]] = j;
         f->glyph2ascii[j] = f->glyph2ascii[i];
@@ -474,8 +545,8 @@ int swf_FontReduce(SWFFONT * f,FONTUSAGE * use)
 
 int swf_FontInitUsage(SWFFONT* f, FONTUSAGE * use)
 { if (!use) return -1;
-  use->code = malloc(sizeof(use->code[0])*f->numchars);
-  memset(use->code,0,sizeof(use->code[0])*f->numchars);
+  use->code = malloc(sizeof(use->code[0])*f->maxascii);
+  memset(use->code,0,sizeof(use->code[0])*f->maxascii);
   return 0;
 }
 
@@ -484,7 +555,7 @@ void swf_FontClearUsage(SWFFONT* f, FONTUSAGE * use)
   free(use->code);
 }
 
-int swf_FontUse(FONTUSAGE * use,U8 * s)
+int swf_FontUse(SWFFONT*f, FONTUSAGE * use,U8 * s)
 { if ((!use)||(!s)) return -1;
   while (s[0])
   { use->code[s[0]] = 1;
@@ -554,7 +625,7 @@ int swf_FontSetDefine2(TAG *tag, SWFFONT * f)
        flags |= 4; //wide codecs
     if(fontSize(f)>65535)
        flags |= 8; //wide offsets
-    flags |= 8; //FIXME: the above check doesn't work
+    flags |= 8|4; //FIXME: the above check doesn't work
 
     if(f->encoding & FONT_ENCODING_ANSI)
        flags |= 16; // ansi
@@ -734,7 +805,8 @@ void swf_FontFree(SWFFONT * f)
     if(f->glyphnames) {
       int t;
       for(t=0;t<f->numchars;t++) {
-       free(f->glyphnames[t]);
+        if(f->glyphnames[t])
+           free(f->glyphnames[t]);
       }
       free(f->glyphnames);
     }
@@ -761,45 +833,61 @@ int swf_TextSetInfoRecord(TAG * t,SWFFONT * font,U16 size,RGBA * color,int dx,in
   return 0;
 }
 
-int swf_TextCountBits(SWFFONT * font,U8 * s,int scale,U8 * gbits,U8 * abits)
+static int swf_TextCountBits2(SWFFONT * font,U8 * s,int scale,U8 * gbits,U8 * abits, char*encoding)
 { U16 g,a;
+  char utf8=0;
   if ((!s)||(!font)||((!gbits)&&(!abits))||(!font->ascii2glyph)) return -1;
   g = a = 0;
 
-  while(s[0])
+  if(!strcmp(encoding, "UTF8")) utf8=1;
+  else if(!strcmp(encoding, "iso-8859-1")) utf8=0;
+  else fprintf(stderr, "Unknown encoding: %s", encoding);
+
+  while(*s)
   { 
-    int glyph = -1;
-    if(s[0] < font->maxascii)
-       glyph = font->ascii2glyph[s[0]];
+    int glyph = -1,c;
+    
+    if(!utf8) c = *s++;
+    else c = readUTF8char(&s);
+
+    if(c < font->maxascii)
+       glyph = font->ascii2glyph[c];
     if(glyph>=0) {
        g = swf_CountUBits(glyph,g);
-       a = swf_CountBits((((U32)font->glyph[glyph].advance)*scale)/100,a);
+       a = swf_CountBits(((((U32)font->glyph[glyph].advance)*scale)/20)/100,a);
     }
-    s++;
   }
 
   if (gbits) gbits[0] = (U8)g;
   if (abits) abits[0] = (U8)a;
-
   return 0;
 }
 
-int swf_TextSetCharRecord(TAG * t,SWFFONT * font,U8 * s,int scale,U8 gbits,U8 abits)
-{ int l=0,i,pos;
+static int swf_TextSetCharRecord2(TAG * t,SWFFONT * font,U8 * s,int scale,U8 gbits,U8 abits, char*encoding)
+{ int l=0,pos;
+  char utf8=0;
     
   if ((!t)||(!font)||(!s)||(!font->ascii2glyph)) return -1;
+  
+  if(!strcmp(encoding, "UTF8")) utf8=1;
+  else if(!strcmp(encoding, "iso-8859-1")) utf8=0;
+  else fprintf(stderr, "Unknown encoding: %s", encoding);
 
   pos = t->len;
   swf_SetU8(t, l); //placeholder
 
-  for (i=0;s[i];i++)
+  while(*s)
   { 
-    int g = -1;
-    if(s[i] < font->maxascii) 
-       g = font->ascii2glyph[s[i]];
+    int g = -1,c;
+    
+    if(!utf8) c = *s++;
+    else c = readUTF8char(&s);
+
+    if(c < font->maxascii) 
+       g = font->ascii2glyph[c];
     if(g>=0) {
       swf_SetBits(t,g,gbits);
-      swf_SetBits(t,(((U32)font->glyph[g].advance)*scale)/100,abits);
+      swf_SetBits(t,((((U32)font->glyph[g].advance)*scale)/20)/100,abits);
       l++;
       if(l==0x7f)
          break;
@@ -812,6 +900,19 @@ int swf_TextSetCharRecord(TAG * t,SWFFONT * font,U8 * s,int scale,U8 gbits,U8 ab
   return 0;
 }
 
+int swf_TextCountBits(SWFFONT * font,U8 * s,int scale,U8 * gbits,U8 * abits) {
+    return swf_TextCountBits2(font,s,scale,gbits,abits,"iso-8859-1");
+}
+int swf_TextSetCharRecord(TAG * t,SWFFONT * font,U8 * s,int scale,U8 gbits,U8 abits) {
+    return swf_TextSetCharRecord2(t,font,s,scale,gbits,abits,"iso-8859-1");
+}
+int swf_TextCountBitsUTF8(SWFFONT * font,U8 * s,int scale,U8 * gbits,U8 * abits) {
+    return swf_TextCountBits2(font,s,scale,gbits,abits,"UTF8");
+}
+int swf_TextSetCharRecordUTF8(TAG * t,SWFFONT * font,U8 * s,int scale,U8 gbits,U8 abits) {
+    return swf_TextSetCharRecord2(t,font,s,scale,gbits,abits,"UTF8");
+}
+
 U32 swf_TextGetWidth(SWFFONT * font,U8 * s,int scale)
 { U32 res = 0;
 
@@ -822,7 +923,7 @@ U32 swf_TextGetWidth(SWFFONT * font,U8 * s,int scale)
       if(*s < font->maxascii) 
          g = font->ascii2glyph[*s];
       if(g>=0)
-        res += font->glyph[g].advance;
+        res += font->glyph[g].advance/20;
       s++;
     }
     if (scale) res = (res*scale)/100;
@@ -830,6 +931,31 @@ U32 swf_TextGetWidth(SWFFONT * font,U8 * s,int scale)
   return res;
 }
 
+SRECT swf_TextCalculateBBoxUTF8(SWFFONT * font,U8 * s,int scale)
+{
+    int pos=0;
+    SRECT r;
+    swf_GetRect(0, &r);
+    while(*s) {
+       int c = readUTF8char(&s);
+       if(c < font->maxascii) {
+           int g = font->ascii2glyph[c];
+           if(g>=0) {
+               SRECT rn = font->layout->bounds[g];
+               rn.xmin = (rn.xmin * scale)/20/100 + pos;
+               rn.xmax = (rn.xmax * scale)/20/100 + pos;
+               rn.ymin = (rn.ymin * scale)/20/100;
+               rn.ymax = (rn.ymax * scale)/20/100;
+               swf_ExpandRect2(&r, &rn);
+               pos += (font->glyph[g].advance*scale)/20/100;
+           }
+       }
+       c++;
+    }
+    return r;
+}
+
+
 SWFFONT* swf_ReadFont(char* filename)
 {
   int f;
@@ -900,10 +1026,13 @@ void swf_WriteFont(SWFFONT*font, char* filename)
   {
     int c;
     t = swf_InsertTag(t,ST_GLYPHNAMES);
-    swf_SetU16(t, font->id);
+    swf_SetU16(t, WRITEFONTID);
     swf_SetU16(t, font->numchars);
     for(c=0;c<font->numchars;c++) {
-       swf_SetString(t, font->glyphnames[c]);
+       if(font->glyphnames[c])
+           swf_SetString(t, font->glyphnames[c]);
+       else
+           swf_SetString(t, "");
     }
   }
 
@@ -916,14 +1045,19 @@ void swf_WriteFont(SWFFONT*font, char* filename)
        int ypos = 1;
        U8 gbits,abits;
        int x,y,c;
+       int range = font->maxascii;
        
        c=0;
-       for(s=0;s<font->maxascii;s++)
+       if(useDefineFont2 && range > 256) {
+           range = 256;
+       }
+
+       for(s=0;s<range;s++)
        {
            int g = font->ascii2glyph[s];
            if(g>=0) {
-              if(font->glyph[g].advance*textscale/64 > xmax) {
-                  xmax = font->glyph[g].advance*textscale/64;
+              if((font->glyph[g].advance*textscale/20)/64 > xmax) {
+                  xmax = (font->glyph[g].advance*textscale/20)/64;
               }
               c++;
            }
@@ -962,11 +1096,11 @@ void swf_WriteFont(SWFFONT*font, char* filename)
            rgb.g = 0x00;
            rgb.b = 0x00;
            ypos = 1;
-           for(y=0;y<((font->maxascii+15)/16);y++)
+           for(y=0;y<((range+15)/16);y++)
            {
                int c=0,lastx=-1;
                for(x=0;x<16;x++) {
-                   int g = (y*16+x<font->maxascii)?font->ascii2glyph[y*16+x]:-1;
+                   int g = (y*16+x<range)?font->ascii2glyph[y*16+x]:-1;
                    if(g>=0 && font->glyph[g].shape) {
                        c++;
                        if(lastx<0) 
@@ -977,15 +1111,15 @@ void swf_WriteFont(SWFFONT*font, char* filename)
                  swf_TextSetInfoRecord(t,font,textscale,&rgb,lastx+1,textscale*ypos*2);
                  for(x=0;x<16;x++)
                  {
-                     int g = (y*16+x<font->maxascii)?font->ascii2glyph[y*16+x]:-1;
+                     int g = (y*16+x<range)?font->ascii2glyph[y*16+x]:-1;
                      if(g>=0 && font->glyph[g].shape) {
                        if(lastx != x*xmax) {
                            swf_TextSetInfoRecord(t,0,0,0,x*xmax+1,0);
                        }
                        swf_SetU8(t,1);
                        swf_SetBits(t, g, gbits);
-                       swf_SetBits(t, font->glyph[g].advance, abits);
-                       lastx = x*xmax+font->glyph[g].advance;
+                       swf_SetBits(t, font->glyph[g].advance/20, abits);
+                       lastx = x*xmax+(font->glyph[g].advance/20);
                        swf_ResetWriteBits(t);
                      }
                  }
@@ -1050,30 +1184,16 @@ void swf_SetEditText(TAG*tag, U16 flags, SRECT r, char*text, RGBA*color,
        swf_SetString(tag,text);
 }
 
-SRECT swf_SetDefineText(TAG*tag, SWFFONT*font, RGBA*rgb, char*text, int scale)
+SRECT swf_SetDefineText(TAG*tag, SWFFONT*font, RGBA*rgb, char*text, int scale, MATRIX* m)
 {
     SRECT r;
     U8 gbits, abits;
     U8*c = (U8*)text;
     int pos = 0;
-    swf_GetRect(0, &r);
     if(font->layout) {
-       while(*c) {
-           if(*c < font->maxascii) {
-               int g = font->ascii2glyph[*c];
-               if(g>=0) {
-                   SRECT rn = font->layout->bounds[g];
-                   rn.xmin = (rn.xmin * scale)/100 + pos;
-                   rn.xmax = (rn.xmax * scale)/100 + pos;
-                   rn.ymin = (rn.ymin * scale)/100;
-                   rn.ymax = (rn.ymax * scale)/100;
-                   swf_ExpandRect2(&r, &rn);
-                   pos += (font->glyph[g].advance*scale*20)/100;
-               }
-           }
-           c++;
-       }
+       r = swf_TextCalculateBBoxUTF8(font,text,scale*20);
     } else {
+       fprintf(stderr, "No layout information- can't compute text bbox accurately");
        /* Hm, without layout information, we can't compute a bounding
           box. We could call swf_FontCreateLayout to create a layout,
           but the caller probably doesn't want us to mess up his font
@@ -1084,8 +1204,8 @@ SRECT swf_SetDefineText(TAG*tag, SWFFONT*font, RGBA*rgb, char*text, int scale)
     }
 
     swf_SetRect(tag,&r);
-    swf_SetMatrix(tag,NULL);
-    swf_TextCountBits(font,text,scale*20,&gbits,&abits);
+    swf_SetMatrix(tag,m);
+    swf_TextCountBitsUTF8(font,text,scale*20,&gbits,&abits);
     swf_SetU8(tag,gbits);
     swf_SetU8(tag,abits);
 
@@ -1099,7 +1219,7 @@ SRECT swf_SetDefineText(TAG*tag, SWFFONT*font, RGBA*rgb, char*text, int scale)
     /* set the actual text- notice that we just pass our scale
        parameter over, as TextSetCharRecord calculates with 
        percent, too */
-    swf_TextSetCharRecord(tag,font,text,scale*20,gbits,abits);
+    swf_TextSetCharRecordUTF8(tag,font,text,scale*20,gbits,abits);
 
     swf_SetU8(tag,0);
     return r;
@@ -1131,9 +1251,8 @@ void swf_FontCreateLayout(SWFFONT*f)
        bbox = swf_GetShapeBoundingBox(shape2);
        swf_Shape2Free(shape2);
        f->layout->bounds[t] = bbox;
-       /* FIXME */
-       //width = (bbox.xmax - bbox.xmin)/20;
-       width = (bbox.xmax)/20;
+       
+       width = (bbox.xmax);
 
        /* The following is a heuristic- it may be that extractfont_DefineText
           has already found out some widths for individual characters (from the way
@@ -1150,53 +1269,9 @@ void swf_FontCreateLayout(SWFFONT*f)
     }
 }
        
-static U32 readUTF8char(char**text)
-{
-    U32 c = 0;
-    if(!(*(*text) & 0x80))
-       return *((*text)++);
-
-    /* 0000 0080-0000 07FF   110xxxxx 10xxxxxx */
-    if(((*text)[0] & 0xe0) == 0xc0 && (*text)[1])  
-    {
-       c = ((*text)[0] & 0x1f) << 6 | ((*text)[1] & 0x3f);
-       (*text) += 2;
-       return c;
-    }
-    /* 0000 0800-0000 FFFF   1110xxxx 10xxxxxx 10xxxxxx */
-    if(((*text)[0] & 0xf0) == 0xe0 && (*text)[1] && (*text)[2])
-    {
-       c = ((*text)[0] & 0x0f) << 12 | ((*text)[1] & 0x3f) << 6 | ((*text)[2] & 0x3f);
-       (*text) += 3;
-       return c;
-    }
-    /* 0001 0000-001F FFFF   11110xxx 10xxxxxx 10xxxxxx 10xxxxxx */
-    if(((*text)[0] & 0xf8) == 0xf0 && (*text)[1] && (*text)[2] && (*text)[3] )  
-    {
-       c = ((*text)[0] & 0x07) << 18 | ((*text)[1] & 0x3f) << 12 | ((*text)[2] & 0x3f)<<6 | ((*text)[3] & 0x3f);
-       (*text) += 4;
-       return c;
-    }
-    /* 0020 0000-03FF FFFF   111110xx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx */
-    if(((*text)[0] & 0xfc) == 0xf8 && (*text)[1] && (*text)[2] && (*text)[3] && (*text)[4])  
-    {
-       c = ((*text)[0] & 0x03) << 24 | ((*text)[1] & 0x3f) << 18 | ((*text)[2] & 0x3f)<<12 | ((*text)[3] & 0x3f) << 6 | ((*text)[4] & 0x3f);
-       (*text) += 5;
-       return c;
-    }
-    /* 0400 0000-7FFF FFFF   1111110x 10xxxxxx ... 10xxxxxx */
-    if(((*text)[0] & 0xfe) == 0xfc && (*text)[1] && (*text)[2] && (*text)[3] && (*text)[4] && (*text)[5])  
-    {
-       c = ((*text)[0] & 0x01) << 30 | ((*text)[1] & 0x3f) << 24 | ((*text)[2] & 0x3f)<<18 | ((*text)[3] & 0x3f) << 12 | ((*text)[4] & 0x3f) << 6  | ((*text)[5] & 0x3f) << 6;
-       (*text) += 6;
-       return c;
-    }
-    return *((*text)++);
-}
-
-void swf_DrawText(drawer_t*draw, SWFFONT*font, char*text)
+void swf_DrawText(drawer_t*draw, SWFFONT*font, int size, char*text)
 {
-    char*s = text;
+    U8*s = (U8*)text;
     int advance = 0;
     while(*s) {
        SHAPE*shape;
@@ -1205,31 +1280,35 @@ void swf_DrawText(drawer_t*draw, SWFFONT*font, char*text)
        U32 c = readUTF8char(&s);
        int g = font->ascii2glyph[c];
        shape = font->glyph[g].shape;
+       if(((int)g)<0) {
+           fprintf(stderr, "No char %d in font %s\n", c, font->name?(char*)font->name:"?");
+           continue;
+       }
        shape2 = swf_ShapeToShape2(shape);
        l = shape2->lines;
        while(l) {
            if(l->type == moveTo) {
                FPOINT to;
-               to.x = l->x/20.0+advance;
-               to.y = l->y/20.0;
+               to.x = l->x*size/100.0/20.0+advance;
+               to.y = l->y*size/100.0/20.0;
                draw->moveTo(draw, &to);
            } else if(l->type == lineTo) {
                FPOINT to;
-               to.x = l->x/20.0+advance;
-               to.y = l->y/20.0;
+               to.x = l->x*size/100.0/20.0+advance;
+               to.y = l->y*size/100.0/20.0;
                draw->lineTo(draw, &to);
            } else if(l->type == splineTo) {
                FPOINT mid,to;
-               mid.x = l->sx/20.0+advance;
-               mid.y = l->sy/20.0;
-               to.x = l->x/20.0+advance;
-               to.y = l->y/20.0;
+               mid.x = l->sx*size/100.0/20.0+advance;
+               mid.y = l->sy*size/100.0/20.0;
+               to.x = l->x*size/100.0/20.0+advance;
+               to.y = l->y*size/100.0/20.0;
                draw->splineTo(draw, &mid, &to);
            }
            l = l->next;
        }
        swf_Shape2Free(shape2);
-       advance += font->glyph[g].advance;
+       advance += font->glyph[g].advance*size/100.0/20.0;
     }
 }