Java Swing JLabel, HTML and custom fonts

会有一股神秘感。 提交于 2019-12-12 07:37:57

问题


In our Java Swing application, we're loading a custom font and adding it to a JLabel:

try {
  this.font = Font.createFont(Font.TRUETYPE_FONT, new File("resources/fonts/ourcoolfont.ttf")).deriveFont(16f);
} catch (Exception e) {
  this.font = new Font("Arial", Font.PLAIN, 16);
}
this.label.setFont(this.font);

Easy and worked fine on 3 different systems. Until someone else tried to run it. The font was loaded (as we're also using on some other Swing elements), but not used in the JLabel.

After some searching, I've found out you can't use both HTML and a loaded font. For some reasons it works on my system (I assume it has something to do with the Java version), but not on some others. As we would like the project to work in outdated Java versions, just asking to update isn't an option.

One option is to install the font on the computer, something we don't like to do. The best solution I've found is this one: How can I create a Java/Swing text component that is both styled and has a custom font?

However, that question is about a JTextPane. A JLabel doesn't seem to have a getStyledDocument() method I can use for that.

Is there any way to let our font work with the JLabel?


回答1:


To use some font:

<html><head><style type="text/css">
body { font-family: Cool; } </style></head><body>...

The Font you created has to be registered first in the singleton GraphicsEnvironment to be accessible to all:

GraphicsEnvironment genv = GraphicsEnvironment.getLocalGraphicsEnvironment();
genv.registerFont(font);



回答2:


Because StyledDocument extends Document, you may be able use an implementation thereof using JTextField's setDocument() method.



来源:https://stackoverflow.com/questions/8423007/java-swing-jlabel-html-and-custom-fonts

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!