mp_canvas_drawer
mp_canvas_drawer copied to clipboard
textalign center 设置 无效
定义 type = text 的 width 宽度,如
textAlign: 'center', top: 124, left: 75, bolder: true, breakWord:true, MaxLineNumber: 1, width: 220
在 canvasdrawer.sj 约200行,加一个判断
if (textAlign === 'center') { let leftM = width / 2 + left; this.ctx.fillText(fillText, leftM, fillTop) } else { this.ctx.fillText(fillText, left, fillTop) }