WeChat 애플릿 저장/복원(도면 컨텍스트 저장 및 복원)
save
Definition
현재 그리기 컨텍스트를 저장합니다.
restore
Definition
이전에 저장된 도면 컨텍스트를 복원합니다.
예
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()