如何找到在 Java 中 Graphics 对象上绘制的字体的尺寸?
我的代码中有一个 Font 和一个 FontMetrics 对象,并且我正在将 Font 绘制到 Graphics 对象上,但我不确定如何在绘制字体时找出字体的尺寸(以像素为单位)。有谁知道我该如何计算?
I have a Font and a FontMetrics object in my code and I'm drawing a Font onto a Graphics object but I'm not for sure how to find out the dimensions of the font when it's drawn (in pixels). Does anyone know how I could calculate that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您拥有的 FontMetrics 对象应该就是您所需要的。 getHeight() 将给出用于创建 FontMetrics 对象的字体大小的文本高度,以及 stringWidth(String) 将告诉您要呈现的任何文本的宽度。
请注意,您可能希望包含 getAscent () 和 getDescent () 和高度可以全面了解文本的高度。
The FontMetrics object you have should be all you need. getHeight() will give you the height of the text for the font size used to create the FontMetrics object, and stringWidth(String) will tell you the width of any text that you're trying to render.
Note that you probably want to include getAscent() and getDescent() with the height to get a full picture of what the height of the text will be.
访问 FontMetrics 的简单方法是调用
setFont()
后从图形上下文中获取它,如 简单示例。An easy way to access FontMetrics is to get it from the graphics context after invoking
setFont()
, as seen in this simple example.