gpt4 book ai didi

java - Graphics2D 在绘制之前获取 String 的尺寸

转载 作者:行者123 更新时间:2023-12-02 04:22:05 26 4
gpt4 key购买 nike

在我的程序中,我正在绘制这样的字符串:

graphics2D.drawString(string, x, y);

但是,为了确定 x 和 y,我想知道该字符串的尺寸(高度和宽度)。我怎样才能做到这一点?

最佳答案

您需要使用FontMetrics为此类。您可以从 Graphics 对象获取要使用的 FontMetrics,然后使用 stringWidthgetHeight 方法获取尺寸。

FontMetrics fm   = graphics2D.getFontMetrics();
int stringWidth = fm.stringWidth(string);
int stringHeight = fm.getHeight();

关于java - Graphics2D 在绘制之前获取 String 的尺寸,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32657889/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com