改变Java中的字体大小

发布于 2024-11-09 02:16:50 字数 324 浏览 0 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

玩套路吗 2024-11-16 02:16:50

deriveFont 返回对新字体实例的引用。因此你需要将它分配回字体,例如

font = font.deriveFont(20.0f);

deriveFont returns a reference to a new font instance. Thus you need to assign it back to font, e.g.

font = font.deriveFont(20.0f);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文