WeChat 애플릿에서 scale 메서드를 호출하여 수평 및 수직 좌표의 크기를 조정합니다.
scale
Definition
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()