微信小程序save/restore,小程序保存和恢復(fù)繪圖上下文
2017-12-22
導(dǎo)讀:繪圖接口和方法 canvasContext.save 定義 保存當(dāng)前的繪圖上下文。 restore 定義 恢復(fù)之前保存的繪圖上下文。 例子 const ctx = wx.createCanvasContext( 'myCanvas' ) // save the default fill style ctx.save() ctx.s...
繪圖接口和方法
canvasContext.save
定義
保存當(dāng)前的繪圖上下文。
restore
定義
恢復(fù)之前保存的繪圖上下文。
例子
const ctx = wx.createCanvasContext('myCanvas')
// save the default fill style
ctx.save()
ctx.setFillStyle('red')
ctx.fillRect(10, 10, 150, 100)
// restore to the previous saved state
ctx.restore()
ctx.fillRect(50, 50, 150, 100)
ctx.draw()
繪圖接口和方法
更多微信小程序開發(fā)教程,可以關(guān)注hi小程序。第二部分:如何開通一個小商店