Java 2D™ text rendering can be affected by rendering hints.
Recall that the most important text drawing method is the following:
Graphics.drawString(String s, int x, int y);
Text antialiasing is a technique used to smooth the edges of text on a screen.
The Java 2D API enables applications to specify whether this technique should be used and what
algorithm to use by applying a text rendering hint to the Graphics
.
The most common rendering hint blends the foreground (text) color with the onscreen background pixels at the edges of the text. To request this hint an application must invoke the following:
graphics2D.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_ON);
The following figure illustrates the antialiasing capability.
If used inappropriately this method can make the text appear overly fuzzy. In such cases, a better hint to use is the following:
graphics2D.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_GASP);
This method automatically uses information in the font itself to decide whether to use antialiasing or to use solid colors.
LCD displays have a property that the Java 2D API can use to produce text that isn't as fuzzy as typical antialiasing but is more legible at small sizes. To request that text be drawn using the sub-pixel LCD text mode for a typical LCD display, an application must invoke the following:
graphics2D.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_LCD_HRGB);
TEXT_ANTIALIAS_GASP
hint.
VALUE_TEXT_ANTIALIAS_OFF
.
TEXT_ANTIALIAS_LCD_HRGB
hint.
AntialiasedText.java
.