apply font processing code example
Example 1: processing load font from file
PFont font = createFont("PressStart2P.ttf", 32);
textFont(font);
Example 2: processing load font from file
PFont font = loadFont("LetterGothicStd-32.vlw");
textFont(font, 32);