Reference+
Name
textSize()
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.
Examples
size(400, 400); background(0); fill(255); textSize(104); text("WORD", 40, 200); textSize(56); text("WORD", 40, 280);
Syntax
textSize(size)
Parameters
size
(float)
the size of the letters in units of pixels
Return
void
Related
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.