直播軟體搭建,canvas文字加粗

zhibo系統開發發表於2022-07-07

直播軟體搭建,canvas文字加粗

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)
    },


以上就是直播軟體搭建,canvas文字加粗, 更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2904653/,如需轉載,請註明出處,否則將追究法律責任。

相關文章