矩形内的画布绘制带有圆形边框的文本

时间:2019-05-08 11:00:38

标签: javascript html canvas

我正在尝试为canvas rect内的文本添加圆形边框。这是我的代码

        ctx.save();
        ctx.fillStyle = this.threshold[value].color;
        ctx.fillRect(0, upperLeftCornerX , length, 15);

        ctx.fillStyle = 'white';
        ctx.font = '10px Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif';

        ctx.fillText(name, 2, upperLeftCornerX + 11);
        ctx.border = '1px black';

我已经添加了文本,但是无法应用边框。我该怎么做?谢谢。

0 个答案:

没有答案