gpt4 book ai didi

java - 如何在 java2D 中获取 Font X 偏移宽度?

转载 作者:行者123 更新时间:2023-12-01 15:57:39 27 4
gpt4 key购买 nike

我需要使用 java 2D 打印两个单词:“A”和“B

字体大小=100;

A”字体系列:Bodoni MT 海报压缩

B”字体系列:Arial

我编写了以下代码来做到这一点:

BufferedImage image = new BufferedImage(400, 300, BufferedImage.TYPE_INT_RGB);
Graphics g = image.getGraphics();
{//fill bg color
g.setColor(new Color(255,255,255));
g.fillRect(0, 0, image.getWidth(), image.getHeight());
}

int FONT_SIZE=100;//set font size
{//print A
g.setColor(new Color(0,0,0));
g.setFont(new Font("Bodoni MT Poster Compressed", Font.PLAIN ,FONT_SIZE));
g.drawString("A",0,FONT_SIZE);
}
{//print B
g.setColor(new Color(0,0,0));
g.setFont(new Font("Arial", Font.PLAIN ,FONT_SIZE));
g.drawString("B",FONT_SIZE,FONT_SIZE);
}
g.dispose();

我得到结果图像:enter image description here

但我需要这样的(由PhotoShop制作):enter image description here

我认为问题在g.drawString("B",FONT_SIZE,FONT_SIZE);

如何获取字体 X 偏移宽度?

感谢您的帮助:)

最佳答案

执行 setFont 后,声明一个变量,例如

FontMetrics fm = g.getFontMetrics();
int strA = fm.stringWidth("A"),
strB = fm.stringWidth("B"),
strH = fm.getHeight();

现在你已经有了字母的所有尺寸,设置它们的位置(px是从左边缘到字母的距离,py是从字体顶部到基线的距离)

int px = ..., py = ...
g.drawString ("A", px, py);

“B”也是如此。希望有帮助,-M.S.

关于java - 如何在 java2D 中获取 Font X 偏移宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4789787/

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