CanvasContext.scale收藏我的收藏
收藏
我的收藏
注意:该接口已停止维护,建议使用 Canvas 组件 V2
基础库 1.0.0 开始支持本方法,这是一个同步方法。
在调用后,之后创建的路径其横纵坐标会被缩放。多次调用倍数会相乘。
语法
CanvasContext.scale(scaleWidth, scaleHeight)
参数说明
scaleWidth
类型 | 默认值 | 必填 | 说明 | 最低支持版本 |
---|---|---|---|---|
number | 是 | 横坐标缩放倍数 (1=100%,0.5=50%,2=200%) | 1.0.0 |
scaleHeight
类型 | 默认值 | 必填 | 说明 | 最低支持版本 |
---|---|---|---|---|
number | 是 | 纵坐标缩放倍数 (1=100%,0.5=50%,2=200%) | 1.0.0 |
返回值
无
扫码体验
请使用字节宿主APP扫码
代码示例
<!-- index.ttml --> <canvas canvas-id="myCanvas"></canvas>
// index.js Page({ onLoad: function (options) { const canvasCtx = tt.createCanvasContext("myCanvas"); canvasCtx.strokeRect(10, 10, 25, 15); canvasCtx.scale(2, 2); canvasCtx.strokeRect(10, 10, 25, 15); canvasCtx.scale(2, 2); canvasCtx.strokeRect(10, 10, 25, 15); canvasCtx.draw(); }, });
Bug & Tip
- Tip:本 API 仅适用于
<canvas>
组件 V1。
该文档是否有帮助?