image.png使用 Paint.getTextBounds() 计算出文字的显示区域
然后计算出文字的绘制位置,从而让文字上下居中
这种居中算法的优点是,可以让文字精准地居中,分毫不差
最开始使用了公式
y = middle + (bound.bottom - bound.top)/2
结果
image.png
小写的 j 特别靠下
原因是 bound的起始位置是 baseline, 而在bound.top不为0时,中心线的偏移量应该是
bound.top + (bound.bottom - bound.top)/2 -> (bound.bottom + bound.top)/2
这个偏移量是相对 baseline 的,所以它是一个负数
y = middle - (bound.bottom + bound.top)/2
网友评论