Re: [JAVA2D] Value to use for RenderingHints.KEY_TEXT_ANTIALIASING in a library

2007-04-19 Thread Chet Haase
... which reminds me, I wrote a short blog on this, Font Hints for Custom Components, to show how to use Desktop Properties for this. In case it helps: http://weblogs.java.net/blog/chet/archive/2007/01/font_hints_for.html Chet. Phil Race wrote: AA text used to be very slow once upon a

[JAVA2D] Value to use for RenderingHints.KEY_TEXT_ANTIALIASING in a library

2007-04-15 Thread java2d
Hi I'm looking at how we support AA for text in the Flying Saucer library. Before Java 6 (we support back to 1.4 for the library), we found AA to be pretty slow, hence we had it turned off by default. I just turned it back on and found performance, at least with JDK 6, to be great--now my

Re: [JAVA2D] Value to use for RenderingHints.KEY_TEXT_ANTIALIASING in a library

2007-04-15 Thread Phil Race
AA text used to be very slow once upon a time but I think I sped it up mostly in 1.5 not 6 There could be other reasons why its 'faster' now. ie better detection that rendering involves readback from the surface (not specifically for text) which can be slow on AGP buses .. As for the best