You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
villares edited this page May 24, 2020
·
4 revisions
Nome
PFont
Exemplos
```pde
PFont font;
// The font must be located in the sketch's
// "data" directory to load successfully
font = loadFont("FFScala-32.vlw");
textFont(font, 32);
text("word", 15, 50);
#### Descrição
PFont is the font class for Processing. The **loadFont()** function constructs a new font and **textFont()** makes a font active. The **list()** method creates a list of the fonts installed on the computer, which is useful information to use with the<c>createFont()</c> function for dynamically converting fonts into a format to use with Processing.
Métodos
[list()](PFont_list_)
Gets a list of the fonts installed on the system.
Construtores
```pde
PFont()
PFont(input)