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


Processing textLeading()用法及代码示例


Processing, textLeading()用法介绍。

用法

  • textLeading(leading)

参数

  • leading (float) 行间距的像素大小

返回

  • void

说明

以像素为单位设置文本行之间的间距。此设置将用于所有后续调用 text() 函数。但是请注意,前导由 textSize() 重置。例如,如果使用 textLeading(20) 将行距设置为 20,那么如果稍后运行 textSize(48),则行距将重置为文本大小 48 的默认值。

例子

size(400, 400);

// Text to display. The "\n" is a "new line" character
String lines = "L1\nL2\nL3";
textSize(48);
fill(0);  // Set fill to black

textLeading(40);  // Set leading to 40
text(lines, 40, 100);

textLeading(80);  // Set leading to 80
text(lines, 160, 100);

textLeading(120);  // Set leading to 120
text(lines, 280, 100);
Image output for example 1

相关用法


注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 textLeading()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。