Как убрать пробел в первой строке в FabricJS - PullRequest
0 голосов
/ 10 октября 2019

Есть ли способ убрать пробел в первой текстовой строке? В основном я хочу, чтобы B коснулся верхней границы (синяя линия).

enter image description here

https://jsfiddle.net/redlive/ksc0rf8x/

const canvas = new fabric.Canvas('paper');

const text = new fabric.Textbox("Beach", {
    left: 50,
    top: 50,
    width: 50,
    height: 50,
    fontSize: 40,
    lineHeight: 0.8,
    textBackgroundColor: "red",
    fill: "white"
});

canvas.add(text);
canvas.renderAll();

text.canvas.renderAll();
#paper {
  border: solid 1px red;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/fabric.js/2.3.0/fabric.js"></script>
<canvas id="paper" width="400" height="400" style="border:1px solid #ccc"></canvas>
...