在微信小程式中呼叫scale方法對橫縱座標進行縮放
scale
定義
在呼叫scale
方法後,之後建立的路徑其橫縱座標會被縮放。多次呼叫scale
,倍數會相乘。
參數
範例
const ctx = wx.createCanvasContext('myCanvas') ctx.strokeRect(10, 10, 25, 15) ctx.scale(2, 2) ctx.strokeRect(10, 10, 25, 15) ctx.scale(2, 2) ctx.strokeRect(10, 10, 25, 15) ctx.draw()