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


Processing textDescent()用法及代码示例


Processing, textDescent()用法介绍。

用法

  • textDescent()

返回

  • float

说明

返回当前字体以其当前大小的下降。此信息对于确定基线下方字体的高度很有用。

例子

size(400, 400);
float base = height * 0.75;
float scalar = 0.8; // Different for each font

textSize(128);  // Set initial text size
textSize(128);  // Set initial text size
float a = textDescent() * scalar;  // Calc ascent
line(0, base+a, width, base+a);
text("dp", 0, base);  // Draw text on baseline

textSize(256);  // Increase text size
a = textDescent() * scalar;  // Recalc ascent
line(160, base+a, width, base+a);
text("dp", 160, base);  // Draw text on baseline
Image output for example 1

有关的

相关用法


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