无需渲染即可测量文本宽度/高度

时间:2015-07-08 22:38:56

标签: javascript html text reactjs dimension

有没有办法在不渲染实际元素的情况下估算文字宽度?像canvas TextMetrics这样的东西?

案例:我需要估算ReactList的元素高度。要做到这一点,我需要大致知道文本元素需要多少空间(或者它们将跨越多少行)。

例如

render(){
    return <div><SomeComponentWithKnownDims/><p>{this.props.someText}</p></div>;
}

如果我知道someText会被渲染到一条线上有多宽以及线条的长度,我可以很容易地估算出元件高度。

编辑:请注意,这非常重要,不应该触及DOM

1 个答案:

答案 0 :(得分:17)

请检查一下。是一个使用画布的解决方案

function get_tex_width(txt, font) {
        this.element = document.createElement('canvas');
        this.context = this.element.getContext("2d");
        this.context.font = font;
        return this.context.measureText(txt).width;
    }
    alert('Calculated width ' + get_tex_width("Hello World", "30px Arial"));
    alert("Span text width "+$("span").width());

Demo using

修改

使用canvas的解决方案并不是最好的,每个浏览器都会处理不同的画布大小。

Here是使用临时元素获取文本大小的好方法。 Demo

修改

画布规范没有为我们提供测量字符串高度的方法,因此我们可以使用parseInt(context.font)。 获得宽度和高度。此技巧仅适用于px大小。

function get_tex_size(txt, font) {
    this.element = document.createElement('canvas');
    this.context = this.element.getContext("2d");
    this.context.font = font;
    var tsize = {'width':this.context.measureText(txt).width, 'height':parseInt(this.context.font)};
    return tsize;
}
var tsize = get_tex_size("Hello World", "30px Arial");

alert('Calculated width ' + tsize['width'] + '; Calculated height ' + tsize['height']);