textSize()

Category: Typography

Subcategory: Attributes

Complexity: None

Description

Sets the current font size. This size will be used in all subsequent calls to the text() function. Font size is measured in units of pixels.

Related

Example

Code:
background(0);
fill(255);
textSize(26); 
text("WORD", 10, 50); 
textSize(14);
text("WORD", 10, 70);
Preview: