Skip to content

loadFont_

villares edited this page May 24, 2020 · 4 revisions

Nome

loadFont()

Exemplos

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

Loads a font into a variable of typePFont. To load correctly, fonts must be located in the data directory of the current sketch.

Sintaxe

loadFont(<font color="#996600">fontname</font>)

Parâmetros fontname string: name of the font to load

Retorno

PFont

Utilização

Web & Applicações

Relacionado

PFont textFont() text()

Clone this wiki locally