Index: ttf2lht/ttf2lht.c =================================================================== --- ttf2lht/ttf2lht.c (revision 20265) +++ ttf2lht/ttf2lht.c (revision 20266) @@ -34,13 +34,13 @@ fprintf(stderr, "Family: %s\n", ctx.face->family_name); fprintf(stderr, "Height=%d ascender=%d descender=%d\n", ctx.face->height, ctx.face->ascender, ctx.face->descender); - stroker->scale_x = stroker->scale_y = 100.0 / ctx.face->height; + stroker->scale_x = stroker->scale_y = (100.0 / ctx.face->height) / 1000.0; stroker->dx = 0; stroker->dy = -ctx.face->descender; stroker->init(stroker); for(t = 33; t < 126; t++) { - errnum = pcb_ttf_trace(&ctx, tbl[t], t, stroker); + errnum = pcb_ttf_trace(&ctx, tbl[t], t, stroker, 1000); if (errnum != 0) { fprintf(stderr, "%s\n", pcb_ttf_errmsg(errnum)); }