The spec has a context.measureText(text) function that will tell you how much width it would require to print that text, but I can't find a way to find out how tall it is. I know it's based on the font, but I don't know to convert a font string to a text height.

link|improve this question

57% accept rate
I would love to know a better way than the top answer. If there's some algorithm to take arbitrary point font and find the max/min bounds on it, then I would be very happy to hear about it. =) – tjameson Sep 13 '11 at 21:54
@tjameson - there seems to be. See answer from ellisbben (and my enhancement to it). – Daniel Earwicker Mar 23 at 23:45
feedback

8 Answers

The canvas spec doesn't give us a method for measuring the height of a string. However, you can set the size of your text in pixels and you can usually figure out what the vertical bounds are relatively easily.

If you need something more precise then you could throw text onto the canvas and then get pixel data and figure out how many pixels are used vertically. This would be relatively simple, but not very efficient. You could do something like this (it works, but draws some text onto your canvas that you would want to remove):

function measureTextHeight(ctx, left, top, width, height) {

    // Draw the text in the specified area
    ctx.save();
    ctx.translate(left, top + Math.round(height * 0.8));
    ctx.mozDrawText('gM'); // This seems like tall text...  Doesn't it?
    ctx.restore();

    // Get the pixel data from the canvas
    var data = ctx.getImageData(left, top, width, height).data,
    	first = false, 
    	last = false
    	r = height,
    	c = 0;

    // Find the last line with a non-white pixel
    while(!last && r) {
    	r--;
    	for(c = 0; c < width; c++) {
    		if(data[r * width * 4 + c * 4 + 3]) {
    			last = r;
    			break;
    		}
    	}
    }

    // Find the first line with a non-white pixel
    while(r) {
    	r--;
    	for(c = 0; c < width; c++) {
    		if(data[r * width * 4 + c * 4 + 3]) {
    			first = r;
    			break;
    		}
    	}

    	// If we've got it then return the height
    	if(first != r) return last - first;
    }

    // We screwed something up...  What do you expect from free code?
    return 0;
}

// Set the font
context.mozTextStyle = '32px Arial';

// Specify a context and a rect that is safe to draw in when calling measureTextHeight
var height = measureTextHeight(context, 0, 0, 50, 50);
console.log(height);

For Bespin they do fake a height by measuring the width of a lowercase 'm'... I don't know how this is used, and I would not recommend this method. Here is the relevant Bespin method:

var fixCanvas = function(ctx) {
    // upgrade Firefox 3.0.x text rendering to HTML 5 standard
    if (!ctx.fillText && ctx.mozDrawText) {
        ctx.fillText = function(textToDraw, x, y, maxWidth) {
            ctx.translate(x, y);
            ctx.mozTextStyle = ctx.font;
            ctx.mozDrawText(textToDraw);
            ctx.translate(-x, -y);
        }
    }

    if (!ctx.measureText && ctx.mozMeasureText) {
        ctx.measureText = function(text) {
            ctx.mozTextStyle = ctx.font;
            var width = ctx.mozMeasureText(text);
            return { width: width };
        }
    }

    if (ctx.measureText && !ctx.html5MeasureText) {
        ctx.html5MeasureText = ctx.measureText;
        ctx.measureText = function(text) {
            var textMetrics = ctx.html5MeasureText(text);

            // fake it 'til you make it
            textMetrics.ascent = ctx.html5MeasureText("m").width;

            return textMetrics;
        }
    }

    // for other browsers
    if (!ctx.fillText) {
        ctx.fillText = function() {}
    }

    if (!ctx.measureText) {
        ctx.measureText = function() { return 10; }
    }
};
link|improve this answer
1  
I doubt this is what the people that wrote the HTML5 spec had in mind. – Steve Hanov Jun 26 '10 at 2:29
4  
This is a terrible terrible hack that I absolutely love. +1 – Allain Lalonde Aug 26 '10 at 18:39
I don't get it. Where is the connection between the font ascent and the width of the letter "m"? – kayahr Apr 11 '11 at 11:17
Exactly. Where is the connection? That is why I couldn't recommend their (the editor formerly known as Bespin) method. I simply included it for your consideration. – Prestaul Apr 11 '11 at 15:42
em is a relative font measurement where one em is equal to the height of the letter M in the default font size. – jerone Dec 24 '11 at 16:10
show 1 more comment
feedback

I don't know for sure, but I remember Dion Almaer said something about this in a Google IO presentation about Mozilla Bespin. It was something about flipping the M letter and then measuring its width. But I may be wrong.

link|improve this answer
1  
Interesting. My current approximation is to take width of the letter 'e' and double it and was looking if there was a better way. – swampsjohn Jul 15 '09 at 23:18
Since you provide a context to the measureText method... I wonder if it gives you the width after applying rotation. If so, this is brilliant. – Allain Lalonde Aug 26 '10 at 18:41
feedback

Following on from ellisbben's answer, here is an enhanced version to get the ascent and descent from the baseline, i.e. same as tmAscent and tmDescent returned by Win32's GetTextMetric API. This is needed if you want to do a word-wrapped run of text with spans in different fonts/sizes.

Big Text on canvas with metric lines

The above image was generated on a canvas in Safari, red being the top line where the canvas was told to draw the text, green being the baseline and blue being the bottom (so red to blue is the full height).

Using jQuery for succinctness:

var getTextHeight = function(font) {

  var text = $('<span style="font: ' + font + '">Hg</span>');
  var block = $('<div style="display: inline-block; width: 1px; height: 0px;"></div>');

  var div = $('<div></div>');
  div.append(text, block);

  var body = $('body');
  body.append(div);

  try {

    var result = {};

    block.css({ verticalAlign: 'baseline' });
    result.ascent = block.offset().top - text.offset().top;

    block.css({ verticalAlign: 'bottom' });
    result.height = block.offset().top - text.offset().top;

    result.descent = result.height - result.ascent;

  } finally {
    div.remove();
  }

  return result;
};

In addition to a text element, I add a div with display: inline-block so I can set its vertical-align style, and then find out where the browser has put it.

So you get back an object with ascent, descent and height (which is just ascent + descent for convenience). To test it, it's worth having a function that draws a horizontal line:

var testLine = function(ctx, x, y, len, style) {
  ctx.strokeStyle = style; 
  ctx.beginPath();
  ctx.moveTo(x, y);
  ctx.lineTo(x + len, y);
  ctx.closePath();
  ctx.stroke();
};

Then you can see how the text is positioned on the canvas relative to the top, baseline and bottom:

var font = '36pt Times';
var message = 'Big Text';

ctx.fillStyle = 'black';
ctx.textAlign = 'left';
ctx.textBaseline = 'top'; // important!
ctx.font = font;
ctx.fillText(message, x, y);

// Canvas can tell us the width
var w = ctx.measureText(message).width;

// New function gets the other info we need
var h = getTextHeight(font);

testLine(ctx, x, y, w, 'red');
testLine(ctx, x, y + h.ascent, w, 'green');
testLine(ctx, x, y + h.height, w, 'blue');
link|improve this answer
God bless you, you improbably thorough m*****f****r. – ellisbben Mar 24 at 14:00
Why not use this text to determine the height? abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789 Depending on the font you may have characters that are much higher or lower than g and M – omatase May 4 at 13:04
"much higher" is, admittedly, overstating it (it won't let me take that out) but for instance Brush Script and Harlow Solid both have characters that dip lower than g and that's just from checking my limited list of available fonts for just a few minutes. Anyway, not a big deal, just wondered if there was a good reason not to try to cover more bases (granted you aren't going to cover them all). Love this solution by the way, is working quite well for me – omatase May 4 at 13:13
feedback

EDIT: Are you using canvas transforms? If so, you'll have to track the transformation matrix. The following method should measure the height of text with the initial transform.

The canvas uses fonts as defined by CSS, so in theory we can just add an appropriately styled chunk of text to the document and measure its height. I think this is significantly easier than rendering text and then checking pixel data and it should also respect ascenders and descenders. Check out the following:

var determineFontHeight = function(fontStyle) {
  var body = document.getElementsByTagName("body")[0];
  var dummy = document.createElement("div");
  var dummyText = document.createTextNode("M");
  dummy.appendChild(dummyText);
  dummy.setAttribute("style", fontStyle);
  body.appendChild(dummy);
  var result = dummy.offsetHeight;
  body.removeChild(dummy);
  return result;
};

//A little test...
var exampleFamilies = ["Helvetica", "Verdana", "Times New Roman", "Courier New"];
var exampleSizes = [8, 10, 12, 16, 24, 36, 48, 96];
for(var i = 0; i < exampleFamilies.length; i++) {
  var family = exampleFamilies[i];
  for(var j = 0; j < exampleSizes.length; j++) {
    var size = exampleSizes[j] + "pt";
    var style = "font-family: " + family + "; font-size: " + size + ";";
    var pixelHeight = determineFontHeight(style);
    console.log(family + " " + size + " ==> " + pixelHeight + " pixels high.");
  }
}

You'll have to make sure you get the font style correct on the DOM element that you measure the height of but that's pretty straightforward; really you should use something like

var canvas = /* ... */
var context = canvas.getContext("2d");
var canvasFont = " ... ";
var fontHeight = determineFontHeight("font: " + canvasFont + ";");
context.font = canvasFont;
/*
  do your stuff with your font and its height here.
*/
link|improve this answer
+1 Way better solution IMO. It should be possible to get the position of the baseline as well. – Daniel Earwicker Mar 23 at 23:01
Have added an answer that gets the baseline. – Daniel Earwicker Mar 23 at 23:43
Does this work? I didn't even think about sticking it in a div. This probably doesn't even have to be added to the DOM, no? – tjameson Mar 24 at 1:43
I'm totally ignorant of which size and position fields of a node exist when it is not part of the document. I'd be super-interested to read a reference that addresses that, if you know of one. – ellisbben Mar 24 at 13:58
Bravo, I think this should be marked as the answer. It should be noted though that this method does absorb any pre-defined styles so a reset might help to avoid unexpected results. For example, I had to reset line-height back to normal to get an accurate value for offsetHeight. – braitsch Apr 5 at 0:52
feedback

setting the font size might not be practical though, since setting

ctx.font = ''

will use the one defined by CSS as well as any embedded font tags. If you use the CSS font you have no idea what the height is from a programmatic way, using the measureText method, which is very short sighted. On another note though, IE8 DOES return the width and height.

link|improve this answer
feedback

I'm writing a terminal emulator so I needed to draw rectangles around characters.

var size = 10
var lineHeight = 1.2 // CSS "line-height: normal" is between 1 and 1.2
context.font = size+'px/'+lineHeight+'em monospace'
width = context.measureText('m').width
height = size * lineHeight

Obviously if you want the exact amount of space the character takes up, it won't help. But it'll give you a good approximation for certain uses.

link|improve this answer
feedback

As JJ Stiff suggests, you can add your text to a span and then measure the offsetHeight of the span.

var d = document.createElement(”span”);
d.font = “20px arial”
d.textContent = “Hello world!”
var emHeight = d.offsetHeight;

As shown on HTML5Rocks

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.