Fabric.js background of IText object misses boundingbox

996 Views Asked by At

I have some problems when creating IText objects in Fabric.js. The problem is that the background of the IText does not match its bounding box. Basically what I do is this, see JSFiddle below for demo.

    //Regular text, works
    text1 = new fabric.Text('Regular text', {
        fill: 'red',
        left: 100,
        top: 100,
        backgroundColor: 'rgba(0,255,0, 0.65)'
    });

    //IText misses
    text2 = new fabric.IText('Interactive text \nbackground misses \nboundingbox', {
        fill: 'blue',
        left: 100,
        top: 200,
        backgroundColor: 'rgba(0,255,0, 0.65)'
    });

    canvas.add(text1);
    canvas.add(text2);
    text1.setCoords();
    text2.setCoords();
    canvas.calcOffset();
    canvas.renderAll();

JSFiddle

0

There are 0 best solutions below