请问canvas的坐标轴变换有哪些? Riesenzahn 2024-11-01 26 阅读1分钟 " 平移: context.translate(x, y); 旋转: context.rotate(angle); 缩放: context.scale(scaleX, scaleY); 反转: context.transform(-1, 0, 0, 1, 0, 0); 设置变换矩阵: context.setTransform(a, b, c, d, e, f); ```"