gpt4 book ai didi

java - 在处理中增加textSize

转载 作者:行者123 更新时间:2023-12-02 10:30:23 26 4
gpt4 key购买 nike

我正在尝试编写一个程序,其中文本会增长,以便数字越大,字体大小就越大。

我的屏幕上显示了一个从 0-9 的数组,但很难让字体大小增长。

有人给我提示吗?

我当前的代码是:

int[] numbers =   {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};

void setup() {
size(800, 500);
}

void draw() {
background(28, 130, 42);

for (int i = 0; i < numbers.length; i++) {
textSize(32);
fill(51, 102, 104);
text(""+(i), 100+(i)*50, height/2);
}
}

最佳答案

textSize(32) 是硬编码的而不是动态的,请执行以下操作:

for (int i = 0; i < numbers.length; i++) {
textSize(3 * i + 3);
// Your code that draws to screen
}

我已将 32 更改为 3 * i + 3,因此您的 textSize 范围为 3-30 >.

当然,这可以是您想要的任何内容,只需确保它是基于 i 的一些计算,随着循环继续,i 将增加,并且 fontSize > 也会。

关于java - 在处理中增加textSize,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53650878/

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