close

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);
    Image output for example 1

Syntax

  • textSize(size)

Parameters

  • size(float)the size of the letters in units of pixels

Return

  • void