當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Processing textWidth()用法及代碼示例


Processing, textWidth()用法介紹。

用法

  • textWidth(c)
  • textWidth(str)

參數

  • c (char) 要測量的字符
  • str (String) 要測量的字符串

返回

  • float

說明

計算並返回任何字符或文本字符串的寬度。

例子

size(400, 400);
textSize(112);

char c = 'T';
float cw = textWidth(c);
text(c, 0, 160);
line(cw, 0, cw, 200); 

String s = "Tokyo";
float sw = textWidth(s);
text(s, 0, 340);
line(sw, 200, sw, 400);
Image output for example 1

相關用法


注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 textWidth()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。