I have downloaded the gohu font (which is programmer font meant to be used at 14pt) from here https://github.com/koemaeda/gohufont-ttf and I'm trying to display some text with it.
This is what it looks like in GIMP at 14pt (nice and sharp):
And now this is what I get when loading the font using PLAIN 14 in a JTextArea:
I've tried disabling anti aliasing with
((Graphics2D)(this.displayArea.getGraphics())).setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_OFF);
and
System.setProperty("awt.useSystemAAFontSettings","false");
but it didn't help. Any tips? Thanks