2020年10月19日 星期一

week06

size(500,400);
rect(      100,100, 200,100);
fill(200,0,0);
textSize(40);
textAlign(LEFT,TOP);
text("Hello",100,100);

size(300,200);
PFont font = createFont("Times New Roman", 30);
textFont(font);
text("中文 vs.English",  30,30);




size(300,200);
fill(255,0,0);
PFont font1 = createFont("Times New Roman", 30);
textFont(font1);
text("中文 vs.English",  30,30);
PFont font2 = createFont("標楷體", 30);
textFont(font2);
text("中文 vs.English",  30,130);







沒有留言:

張貼留言