我目前正在尝试创建一个语音泡沫,应该使用javascript将其绘制在 Canvas 元素上。

我的问题: ctx.fillStyle = "red";仅更改ctx.fillText颜色。但不是整个路径的背景色。如何为整个语音气泡添加背景色?

Jsfiddle:https://jsfiddle.net/dr7q5yay/8/

我当前的代码如下所示:

var canvas = document.getElementById('canvas');
var ctx = canvas.getContext("2d");

ctx.font = "15px Helvetica";
var text = 'hello test test';

function drawBubble(ctx, x, y, w, h, radius, text)
{
   var r = x + w;
   var b = y + h;

   ctx.beginPath();
   ctx.fillStyle = "red";
   ctx.fill();
   ctx.strokeStyle = "black";
   ctx.lineWidth = "2";
   ctx.moveTo(x + radius, y);

   ctx.lineTo(r - radius, y);
   ctx.quadraticCurveTo(r, y, r, y + radius);
   ctx.lineTo(r, y + h-radius);
   ctx.quadraticCurveTo(r, b, r - radius, b);
   ctx.lineTo(x + radius, b);
   ctx.quadraticCurveTo(x, b, x, b - radius);
   ctx.lineTo(x, y + radius);
   ctx.quadraticCurveTo(x, y, x + radius, y);
   ctx.stroke();
   ctx.fillText(text, x + 20, y + 30);
}

drawBubble(ctx, 10, 60, ctx.measureText(text).width + 40, 50, 20, text);

最佳答案

该代码几乎已经存在,只需对fill()fillStyle做一些更改:

Modified fiddle

您也可以使用 arc() s to draw a rounded rectangles(稍微减少开销)。

09-20 12:52