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


Processing textAscent()用法及代码示例


Processing, textAscent()用法介绍。

用法

  • textAscent()

返回

  • float

说明

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

例子

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

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

textSize(256);  // Increase text size
a = textAscent() * 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大神的英文原创作品 textAscent()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。