Javascript examples for Canvas Reference:measureText
The measureText() method measures the width of the text in pixels.
context.measureText(text).width;
Parameter | Description |
---|---|
text | The text to be measured |
Check the width of the text, before writing it on the canvas:
<!DOCTYPE html> <html> <body> <canvas id="myCanvas" width="300" height="250" style="border:1px solid #d3d3d3;"> Your browser does not support the HTML5 canvas tag.</canvas> <script> var c = document.getElementById("myCanvas"); var ctx = c.getContext("2d"); ctx.font = "30px Arial"; var txt = "Hello World" ctx.fillText("width:" + ctx.measureText(txt).width, 10, 50); ctx.fillText(txt, 10, 100);// w w w .ja va2 s.com </script> </body> </html>