亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

Dokumentasi pembangunan applet WeChat / 微信小程序save/restore(保存和恢復繪圖上下文)

微信小程序save/restore(保存和恢復繪圖上下文)

save


定義

保存當前的繪圖上下文。

restore


定義

恢復之前保存的繪圖上下文。

例子

const ctx = wx.createCanvasContext('myCanvas')// save the default fill stylectx.save() 
ctx.setFillStyle('red')
ctx.fillRect(10, 10, 150, 100)// restore to the previous saved statectx.restore()
ctx.fillRect(50, 50, 150, 100)

ctx.draw()

201612261809427113.png