Reference for Processing (BETA) version 0135+. If you have a previous version, use the reference included with your software. If you see any errors or have any comments, let us know.

Name

textWidth()

Examples
example pic
PFont font;
font = loadFont("FFScala-32.vlw"); 
textFont(font, 32); 

char c = 'T';
float cw = textWidth(c);
text(c, 0, 40);
line(cw, 0, cw, 50); 

String s = "Tokyo";
float sw = textWidth(s);
text(s, 0, 85);
line(sw, 50, sw, 100);
Description Calculates and returns the width of any character or text string.
Syntax
textWidth(data)
Parameters
data char or String
Usage Web & Application
Related loadFont()
PFont
text()
textFont()
Updated on December 20, 2005 02:03:00pm PST

Creative Commons License