我需要使用Java 2D打印两个单词:“ A”和“ B”
字体大小= 100;
“ A”字体家族:Bodoni MT Poster Compressed
“ 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();
我得到结果图像:
但我需要这样(由PhotoShop制造):
我认为
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/