The CanvasRenderingContext2D
.measureText()
method returns a TextMetrics
object that contains information about the measured text (such as its width, for example).
ctx.measureText(text);
text
String
to measure.A TextMetrics
object.
Given this <canvas>
element:
<canvas id="canvas"></canvas>
... you can get a TextMetrics
object using the following code:
const canvas = document.getElementById('canvas'); const ctx = canvas.getContext('2d'); let text = ctx.measureText('Hello world'); console.log(text.width); // 56;
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'CanvasRenderingContext2D.measureText' in that specification. | Living Standard |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | Yes | 12 | Yes | 9 | Yes | Yes |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
CanvasRenderingContext2D
TextMetrics
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/measureText