作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要使用 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();
我得到结果图像:
但我需要这样的(由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/
我是一名优秀的程序员,十分优秀!