Search code examples
javaswingjlabelantialiasing

How can I turn off anti-aliasing for one specific JLabel?


How can I turn off anti-aliasing for one specific JLabel? It uses a very small font which might look better without anti-aliasing.

If important, I'm using Java 1.5 on Mac OS X.


Solution

  • I think you'll have to override the paint(Graphics g) method and draw the text yourself.