Search code examples
javahtmlswingfontsjlabel

Java Swing JLabel, HTML and custom fonts


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?


Solution

  • 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);