有谁知道如何在处理中设置文本边框的颜色

发布于 2024-10-18 16:38:15 字数 74 浏览 4 评论 0原文

我认为没有 textBorder();Stroke(); 不起作用。任何帮助

I think there is no textBorder(); and Stroke(); does not work. any help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

余生共白头 2024-10-25 16:38:15

通过使用描边颜色绘制文本四次,然后使用填充颜色绘制一次,可以得到一个相当不错的 1px 描边:

void draw() {
  textSize(30);
  textWithBorder("text", 255, 0, 15, 30); 
}

void textWithBorder(String string, int strokecolor, int fillcolor, int x, int y) {
  fill(strokecolor);
  text(string, x-1, y); 
  text(string, x+1, y); 
  text(string, x, y-1); 
  text(string, x, y+1); 
  fill(fillcolor);
  text(string, x, y); 
}

This makes a pretty good 1px stroke by drawing the text four times in the stroke color, then once in the fill color:

void draw() {
  textSize(30);
  textWithBorder("text", 255, 0, 15, 30); 
}

void textWithBorder(String string, int strokecolor, int fillcolor, int x, int y) {
  fill(strokecolor);
  text(string, x-1, y); 
  text(string, x+1, y); 
  text(string, x, y-1); 
  text(string, x, y+1); 
  fill(fillcolor);
  text(string, x, y); 
}
友欢 2024-10-25 16:38:15

我遇到了同样的问题,

您必须打印两个具有不同字体大小的文本,一个具有边框颜色,在其之上,一个稍小的具有填充颜色的文本。

您可以编写基本的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文