gpt4 book ai didi

javascript - 如何在 HTML5 Canvas 的文本上添加边框?

转载 作者:技术小花猫 更新时间:2023-10-29 12:17:56 26 4
gpt4 key购买 nike

我可以使用下面的代码绘制文本,

myCanvas.fillStyle = "Red";
myCanvas.font = "30pt Arial";
myCanvas.fillText("Some Text", 10, 30);

但是我想在“一些文本”周围添加一个边框,对此有什么想法吗?

最佳答案

使用 strokeText()strokeStyle。 例如:

canvas = document.getElementById("myc");
context = canvas.getContext('2d');

context.fillStyle = 'red';
context.strokeStyle = 'black';

context.font = '20pt Verdana';
context.fillText('Some text', 50, 50);
context.strokeText('Some text', 50, 50);

context.fill();
context.stroke();
<canvas id="myc"></canvas>

关于javascript - 如何在 HTML5 Canvas 的文本上添加边框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1421082/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com