android – 如何获得给定字体的ascender / descender和x height

前端之家收集整理的这篇文章主要介绍了android – 如何获得给定字体的ascender / descender和x height前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要获得 ascender/ descenderx-height ..

通过使用以下代码,我可以找到下降器和总高度:

descender_height = paint.descent();
total_height = descender_height - paint.ascent();
//ascender = ?; is this always equal to descender height?
//x_height = ?; total_height - 2*descender_height ?

谢谢

解决方法

我认为上升器和下降器的高度通常是相同的,但我不会依赖于每种字体.我并没有真正看到直接进入x高度的方法,但你可以使用的技巧就像下面这样.另外,对于总高度,您是在谈论从最高上升者到最低下降者的绝对距离吗?我还在下面列出了一些内容.我自己没有对它们进行测试,但它应该可以工作(但如果我误解了你所说的话,请告诉我):
// Assuming TextPaint/Paint tp;
Rect bounds;

// this will just retrieve the bounding rect for 'x'
tp.getTextBounds("x",1,bounds);
int xHeight = bounds.height();

Paint.FontMetrics metrics = tp.getFontMetrics();
int totalHeight = metrics.top - metrics.bottom;
原文链接:https://www.f2er.com/android/314712.html

猜你在找的Android相关文章