We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hello. I tried to rewrite text with the backgroud color, but the edge (outline) of the old text remains on the screen. I have no idea why. Can you please help me?
background(-1);
noLoop();
fill(#500F0F);
text("99", 300, 200);
fill(-1);
text("99",300, 200);
Answers
https://Processing.org/reference/noSmooth_.html
draw a rect() over it
Thanks for your answers, they were helpful.