微信小程序save/restore(保存和恢复绘图上下文)

绘图接口和方法

canvasContext.save


定义

保存当前的绘图上下文。

restore


定义

恢复之前保存的绘图上下文。

例子

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()

绘图接口和方法

版权声明:本文采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权
文章名称:《微信小程序save/restore(保存和恢复绘图上下文)》
文章链接:https://zhuji.vsping.com/310604.html
本站资源仅供个人学习交流,请于下载后24小时内删除,不允许用于商业用途,否则法律问题自行承担。