作者热门文章
- objective-c - iOS 5 : Can you override UIAppearance customisations in specific classes?
- iphone - 如何将 CGFontRef 转换为 UIFont?
- ios - 以编程方式关闭标记的信息窗口 google maps iOS
- ios - Xcode 5 - 尝试验证存档时出现 "No application records were found"
我可以使用下面的代码绘制文本,
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/
我是一名优秀的程序员,十分优秀!