有谁知道如何在处理中设置文本边框的颜色
我认为没有 textBorder();
和 Stroke();
不起作用。任何帮助
I think there is no textBorder();
and Stroke();
does not work. any help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通过使用描边颜色绘制文本四次,然后使用填充颜色绘制一次,可以得到一个相当不错的 1px 描边:
This makes a pretty good 1px stroke by drawing the text four times in the stroke color, then once in the fill color:
我遇到了同样的问题,
您必须打印两个具有不同字体大小的文本,一个具有边框颜色,在其之上,一个稍小的具有填充颜色的文本。
您可以编写基本的
textWithBorder(...)
函数。I had the same issue
you have to print two texts with different font sizes over each other, one with the border color and on top of that and slightly smaller the one with the fill color.
you can write a basic
textWithBorder(...)
function.