mp_canvas_drawer icon indicating copy to clipboard operation
mp_canvas_drawer copied to clipboard

textalign center 设置 无效

Open webyzf0109 opened this issue 5 years ago • 1 comments

webyzf0109 avatar Mar 27 '19 03:03 webyzf0109

定义 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) }

SJAY-CN avatar Apr 19 '19 06:04 SJAY-CN