|
Java Platform 1.2 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.awt.font.FontRenderContext
The FontRenderContext
class is a container for the
information needed to correctly measure text. The measurement of text
can vary because of rules that map outlines to pixels, and rendering
hints provided by an application.
One such piece of information is a transform that scales typographical points to pixels. (A point is defined to be exactly 1/72 of an inch, which is slightly different than the traditional mechanical measurement of a point.) A character that is rendered at 12pt on a 600dpi device might have a different size than the same character rendered at 12pt on a 72dpi device because of such factors as rounding to pixel boundaries and hints that the font designer may have specified.
Anti-aliasing and Fractional-metrics specified by an application can also affect the size of a character because of rounding to pixel boundaries.
RenderingHints.KEY_TEXT_ANTIALIASING
,
RenderingHints.KEY_FRACTIONALMETRICS
,
Graphics2D.getFontRenderContext()
,
LineMetrics
Constructor Summary | |
protected |
FontRenderContext()
Constructs a new FontRenderContext
object. |
|
FontRenderContext(AffineTransform tx,
boolean isAntiAliased,
boolean usesFractionalMetrics)
Constructs a FontRenderContext object from an
optional AffineTransform and two boolean
values that determine if the newly constructed object has
anti-aliasing or fractional metrics. |
Method Summary | |
AffineTransform |
getTransform()
Gets the transform that is used to scale typographical points to pixels in this FontRenderContext . |
boolean |
isAntiAliased()
Gets the text anti-aliasing mode used in this FontRenderContext . |
boolean |
usesFractionalMetrics()
Gets the text fractional metrics mode requested by the application for use in this FontRenderContext . |
Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
Constructor Detail |
protected FontRenderContext()
FontRenderContext
object.public FontRenderContext(AffineTransform tx, boolean isAntiAliased, boolean usesFractionalMetrics)
FontRenderContext
object from an
optional AffineTransform
and two boolean
values that determine if the newly constructed object has
anti-aliasing or fractional metrics.tx
- the optional AffineTransform
isAntiAliased
- determines if the newly contructed object has
anti-aliasingusesFractionalMetrics
- determines if the newly constructed
object uses fractional metricsMethod Detail |
public AffineTransform getTransform()
FontRenderContext
.AffineTransform
public boolean isAntiAliased()
FontRenderContext
.RenderingHints.KEY_TEXT_ANTIALIASING
public boolean usesFractionalMetrics()
FontRenderContext
.RenderingHints.KEY_FRACTIONALMETRICS
|
Java Platform 1.2 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |