如何找到在 Java 中 Graphics 对象上绘制的字体的尺寸?

发布于 2024-08-19 17:14:51 字数 109 浏览 4 评论 0原文

我的代码中有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

草莓酥 2024-08-26 17:14:51

您拥有的 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.

鸵鸟症 2024-08-26 17:14:51

访问 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文