CanvasContext.setFontSize(number fontSize)

从基础库 1.9.90 开始,本接口停止维护,请使用 CanvasContext.font 代替

设置字体的字号

参数

number fontSize

字体的字号

示例代码

  1. const ctx = wx.createCanvasContext('myCanvas')
  2. ctx.setFontSize(20)
  3. ctx.fillText('20', 20, 20)
  4. ctx.setFontSize(30)
  5. ctx.fillText('30', 40, 40)
  6. ctx.setFontSize(40)
  7. ctx.fillText('40', 60, 60)
  8. ctx.setFontSize(50)
  9. ctx.fillText('50', 90, 90)
  10. ctx.draw()

CanvasContext.setFontSize - 图1