CanvasContext.setFontSize收藏我的收藏
收藏
我的收藏
注意:该接口已停止维护,建议使用 Canvas 组件 V2
基础库 1.0.0 开始支持本方法,这是一个同步方法。
设置字体的字号。
语法
CanvasContext.setFontSize(fontSize)
参数说明
fontSize
类型 | 默认值 | 必填 | 说明 | 最低支持版本 |
---|---|---|---|---|
number | 是 | 字体的字号 | 1.0.0 |
返回值
无
扫码体验
请使用字节宿主APP扫码
代码示例
<!-- index.ttml --> <canvas canvas-id="myCanvas"></canvas>
// index.js Page({ onReady: function (options) { const canvasCtx = tt.createCanvasContext("myCanvas"); canvasCtx.setFontSize(20); canvasCtx.fillText("ByteDance canvas", 0, 30); canvasCtx.draw(); }, });
Bug & Tip
- Tip:本 API 仅适用于
<canvas>
组件 V1。
该文档是否有帮助?