WeChat 애플릿 API 드로잉 setFontSize(글꼴 크기 설정)


setFontSize


define

글꼴의 글꼴 크기를 설정합니다.

Parameter

ParameterTypeDescription
fontSizeNumberFont size

const ctx = wx.createCanvasContext('myCanvas')

ctx.setFontSize(20)
ctx.fillText('20', 20, 20)
ctx.setFontSize(30)
ctx.fillText('30', 40, 40)
ctx.setFontSize(40)
ctx.fillText('40', 60, 60)
ctx.setFontSize(50)
ctx.fillText('50', 90, 90)

ctx.draw()

201612261753244016.png