Hi guys,
I just encounted a problem with text display in using both 0194 and 0195 versions. With the same sketch as follows, I found characters rendered in processing 1.21 look very clean and smooth, but in both 0194 and 0195, the characters displayed with very rough and blur edge. Not sure if it's a bug, does anyone have the same experience with me?
- PFont font;
- void setup(){
size(600,400);
font=createFont("Andalus",16,true);
smooth();
} - void draw(){
background(255);
fill(0);
textFont(font,60);
textAlign(CENTER,CENTER);
text("General Discussion",width/2,height/2);
}
1