Letter spacing in canvas element

前端 未结 10 2355
攒了一身酷
攒了一身酷 2020-12-24 06:46

The question says it all pretty much. I\'ve been searching around and starting to worry that it\'s impossible.

I\'ve got this canvas element that I\'m drawing text t

10条回答
  •  天命终不由人
    2020-12-24 07:16

    I use:

    ctx.font = "32px Tahoma";//set font
    ctx.scale(0.75,1);//important! the scale
    ctx.fillText("LaFeteParFete test text", 2, 274);//draw
    ctx.setTransform(1,0,0,1,0,0);//reset transform
    

提交回复
热议问题