微信小程序API繪圖setFontSize,微信小程序字號(hào)設(shè)置
2017-12-22
導(dǎo)讀:繪圖接口和方法 canvasContext.setFontSize 定義 設(shè)置字體的字號(hào)。 參數(shù) 參數(shù) 類(lèi)型 說(shuō)明 fontSize Number 字體的字號(hào) 例子 const ctx = wx.createCanvasContext( 'myCanvas' )ctx.setFontSize( 20 )ctx.fillText( '20' , 20...
canvasContext.setFontSize
定義
設(shè)置字體的字號(hào)。
參數(shù)
參數(shù) | 類(lèi)型 | 說(shuō)明 |
---|---|---|
fontSize | Number | 字體的字號(hào) |
例子
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()
更多微信小程序開(kāi)發(fā)教程,可以關(guān)注hi小程序。
第二部分:如何開(kāi)通一個(gè)小商店