Is it possible to use bitmap (.fon) fonts in Netbeans? I have a font I particularly like (Raize font) and I don’t see it anywhere on the list when I try to set it as the editor font.
I can use it in other editors (Notepad++, pspad, visual c++ express etc). I can’t use it in jedit either. Is this issue java related?
Is it possible to use bitmap (.fon) fonts in Netbeans? I have a font
Share
According the Java API Specification for the
java.awt.fontpackage, which is used to add font support to Java, mentions that the following types of fonts are supported:It appears that Microsoft bitmap fonts (
.fon) are not supported, at least from the information I was able to find.On a related note, to get a listing of all the
Fonts which are installed in Java at the current time, one can make a call toGraphicsEnvironment.getAllFontswhich will return aFont[]of all the fonts which can be used.(Note that the
GraphicsEnvironmentclass cannot be instantiated, but an instance can be obtained by theGraphicsEnvironment.getLocalGraphicsEnvironmentmethod.)