微信小程序API·setTextBaseline(设置文字水平对齐)
2022-05-09 16:57 更新
canvasContext.setTextBaseline
基础库 1.4.0 开始支持,低版本需做兼容处理
定义
用于设置文字的水平对齐
参数
参数 | 类型 | 定义 |
---|---|---|
textBaseline | String | 可选值 'top'、'bottom'、'middle'、'normal' |
示例代码:
const ctx = wx.createCanvasContext('myCanvas')
ctx.setStrokeStyle('red')
ctx.moveTo(5, 75)
ctx.lineTo(295, 75)
ctx.stroke()
ctx.setFontSize(20)
ctx.setTextBaseline('top')
ctx.fillText('top', 5, 75)
ctx.setTextBaseline('middle')
ctx.fillText('middle', 50, 75)
ctx.setTextBaseline('bottom')
ctx.fillText('bottom', 120, 75)
ctx.setTextBaseline('normal')
ctx.fillText('normal', 200, 75)
ctx.draw()
以上内容是否对您有帮助:
更多建议: