当前位置: 首页 > 工具软件 > CanvasText > 使用案例 >

canvas文字加粗

况承福
2023-12-01

this.drawText(加粗的文字, "normal bold 40px Arial", "#3F96F3", 161, 394);

drawText(text, font, fontColor, left, top) {
    this.ctx.font = font;
    this.ctx.fillStyle = fontColor;
    this.ctx.fillText(text, left, top)
    },

 类似资料: