改变Java中的字体大小
我在 Java 中使用了自己的自定义字体,但有一个问题,字体大小似乎停留在 1。我在初始化方法中尝试了 font.deriveFont(20.0f);
,但是,它没有调整大小。
try {
font = Font.createFont(Font.TRUETYPE_FONT, new File("D:/StanJump/mailrays.ttf"));
font.deriveFont(20.0f);
} catch (Exception ex) {}
这是我创建字体并尝试更改大小的代码,但这不起作用。请帮忙让它发挥作用吗?
I got my own custom font working in Java, but I have one problem, the font size seems to be staying at 1. I tried font.deriveFont(20.0f);
at my initialize method, but, it didn't resize.
try {
font = Font.createFont(Font.TRUETYPE_FONT, new File("D:/StanJump/mailrays.ttf"));
font.deriveFont(20.0f);
} catch (Exception ex) {}
This is my code to create the font and try to change the size, but this didn't work. Any help on making it work, please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
deriveFont
返回对新字体实例的引用。因此你需要将它分配回字体,例如deriveFont
returns a reference to a new font instance. Thus you need to assign it back to font, e.g.