java 在图片上写字,当字长度超过图片宽度,文字自动换行,并且均居中!
发布网友
发布时间:2024-10-24 06:04
我来回答
共2个回答
热心网友
时间:4分钟前
要自己量度文字相对该字体的宽度,自己去换行的。
FontMetrics
getFontMetrics()
Gets the font metrics of the current font.
abstract FontMetrics
getFontMetrics(Font f)
Gets the font metrics for the specified font.
得到FontMetrics,再去量度文字的宽度等信息
热心网友
时间:1分钟前
使用 LineBreakMeasurer + TextLayout