当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。