this.drawText(‘赠送好友’, “normal bold 24px PingFang SC, PingFang SC-Medium”, “#06af64”, 50,100);
text:文字 font:字体样式 fontColor:字体颜色 left:x轴距离 top:Y轴距离 textWith:文本宽度
drawText(text, font, fontColor, left, top, textWith) {
this.ctx.font = font;
this.ctx.fillStyle = fontColor;
this.ctx.fillText(text, left, top, textWith)
},