I remember, not too long ago, somebody post a link on how to specify the global rendering hints to use anti-alias in java.

Unfortunately I can't find the question.

How can I specify the rendering hint to use anti-alias in swing?

link|improve this question

think I found the way to set it globally. – jjnguy Jul 29 '09 at 18:18
feedback

1 Answer

up vote 3 down vote accepted

For a single Graphics2D:

Graphics2D.setRenderingHint(RenderingHints.KEY_ANTIALIASING, 
             RenderingHints.VALUE_ANTIALIAS_ON);

Call that on the Graphics2D you are drawing on, and you will have anti-aliasing!!

For global settings:

//this SHOULD enable global anti-aliasing
System.setProperty("awt.useSystemAAFontSettings","on");
System.setProperty("swing.aatext", "true");

EDIT By oreyes:

The first one did it!!!

alt text

vs.

alt text

link|improve this answer
1  
I guess it will work if used as first line ( or second ) in the main function :P ... – OscarRyz Jul 29 '09 at 18:16
Wow, what a difference! p.s. You spelled 'Hello' wrong. :P – jjnguy Jul 29 '09 at 18:30
1  
Although I think it was another system property, this did the work. The one displayed in the screenshot is: java -Dawt.useSystemAAFontSettings=on say.Hello – OscarRyz Jul 29 '09 at 18:30
1  
Need to be the first line in main() in a large amount of cases. I'd highly encourage it :D – Hugo Dec 28 '09 at 7:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.