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
?
html , then open styles. css in your text editor. You can use the @font-face rule to load a custom font on a web page.
Logical fonts are the five font families defined by the Java platform which must be supported by any Java runtime environment: Serif, SansSerif, Monospaced, Dialog, and DialogInput. These logical fonts are not actual font libraries.
To set the font for a Swing component, use its setFont() method of the component. JButton closeButton = new JButton("Close"); closeButton. setFont(f4);
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);
Because StyledDocument
extends Document
, you may be able use an implementation thereof using JTextField
's setDocument()
method.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With