wfont->glyph2ascii[num] = s;
swf_ShapeNew(&wfont->glyph[num].shape);
SHAPE*shape = wfont->glyph[num].shape;
- wfont->glyph[num].advance = width/8;
+ wfont->glyph[num].advance = width/2;
TAG*tag = swf_InsertTag(0,ST_DEFINESHAPE);
drawpath(tag, outline, &m, log);
/*uncomment this to mark the glyph sizes:
- */ plotxy p1,p2;
+ plotxy p1,p2;
p1.x=0;
p1.y=0;
p2.x=width/8;
lineto(tag, p2);
lineto(tag, p1);
p1.x -= 2;
- lineto(tag, p1);//*/
+ lineto(tag, p1);// */
swf_ShapeSetEnd(tag);
int g = font->ascii2glyph[s];
text[s] = s;
if(g>=0) {
- if(font->glyph[g].advance*textscale/50 > xmax)
- xmax = font->glyph[g].advance*textscale/50;
+ if(font->glyph[g].advance*textscale/200 > xmax)
+ xmax = font->glyph[g].advance*textscale/200;
}
}
swf.movieSize.xmax = xmax*20;