Fonts

PFont myFont;
size(700,300);
// to see list of available fonts
String[] fontList = PFont.list();
printArray(fontList);

// use a font
background(255);
fill(0);
myFont = createFont("Gigi", 64);
textFont(myFont);
textAlign(CENTER, CENTER);
text("!@#$%aBCDEfghij", width/2, height/2);