Py5Font.get_size()#

Get the font’s size.

Examples#

example picture for get_size()

def setup():
    font = py5.create_font('DejaVu Sans', 15)
    py5.text_font(font)

    py5.text(font.get_name(), 5, 20)
    py5.text(font.get_post_script_name(), 5, 40)
    py5.text(font.get_size(), 5, 60)
    py5.text(font.get_default_size(), 5, 80)

Description#

Get the font’s size.

Underlying Processing method: PFont.getSize

Signatures#

get_size() -> int

Updated on March 06, 2023 02:49:26am UTC