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.
feedback
|
|
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):
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:
| |||||||||||||||
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. | |||||||
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
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:
In addition to a text element, I add a div with So you get back an object with
Then you can see how the text is positioned on the canvas relative to the top, baseline and bottom:
| |||||||
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:
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
| |||||||||||
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. | |||
|
feedback
|
|
I'm writing a terminal emulator so I needed to draw rectangles around characters.
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. | |||
|
feedback
|
|
Funny that TextMetrics has width only and no height: http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html#textmetrics Can you use a Span as on this example? http://mudcu.be/journal/2011/01/html5-typographic-metrics/#alignFix | |||
|
feedback
|
|
As JJ Stiff suggests, you can add your text to a span and then measure the offsetHeight of the span.
As shown on HTML5Rocks | |||
|
feedback
|
