微信小程式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()#