The Java 2D™ API provides a uniform rendering model across different types of devices. At the application level, the rendering process is the same whether the target rendering device is a screen or a printer. When a component needs to be displayed, itspaint
orupdate
method is automatically invoked with an appropriateGraphics
context.The Java 2D API includes the
java.awt.Graphics2D
class, which extends theGraphics
class to provide access to the enhanced graphics and rendering features of the Java 2D API. These features include:
- Rendering the outline of any geometry primitive, using the stroke and paint attributes (
draw
method).- Rendering any geometry primitive by filling its interior with the color or pattern specified by the paint attributes (
fill
method).- Rendering any text string (
drawString
method). The font attribute is used to convert the string to glyphs, which are then filled with the color or pattern specified by the paint attributes.- Rendering the specified image (
drawImage
method).In addition, the
Graphics2D
class supports theGraphics
rendering methods for particular shapes, such asdrawOval
andfillRect
.All methods that are represented above can be divided into two groups. First group contains methods to draw a shape. Second group contains methods to affect the rendering. The last group operate with a term attributes.
You can modify the state attributes that form the
Graphics2D
context for following purposes:
- To vary the stroke width
- To change how strokes are joined together
- To set a clipping path to limit the area that is rendered
- To translate, rotate, scale, or shear objects when they are rendered
- To define colors and patterns to fill shapes with
- To specify how to compose multiple graphics objects
To use Java 2D API features, you cast the
Graphics
object passed intoa
component’s rendering method to aGraphics2D
object. For example:public void Paint (Graphics g) { Graphics2D g2 = (Graphics2D) g; ... }
As the following figure shows, the Graphics2D
class rendering context contains several attributes.
The pen attribute is applied to the outline of a shape. This stroke attribute enables you to draw lines with any point size and dashing pattern and to apply end-cap and join decorations to a line. | |
The fill attribute is applied to a shape's interior. This paint attribute enables you to fill shapes with solid colors, gradients, and patterns. | |
The compositing attribute is used when rendered objects overlap existing objects. | |
The transform attribute is applied during rendering to convert the rendered object from user space to device-space coordinates. Optional translation, rotation, scaling, or shearing transforms can also be applied through this attribute. | |
The clip,
type restricts rendering to the area
within the outline of the Shape
object used to define the clipping path. Any Shape
object can be used to define the clip.
|
|
The font attribute is used to convert text strings to glyphs. |
|
Rendering hints specify preferences in the trade-offs between speed and quality. For example, you can specify whether antialiasing should be used, if this feature available. See also Controlling Rendering Quality. |
To learn more about transforming and compositing see the Advanced Topics in 2D Graphcis lesson.
When you set an attribute, you pass in the appropriate attribute
object. As the following example shows, to change the paint attribute to a blue-green
gradient fill, you would construct a GradientPaint
object
and then call the setPaint
method.
gp = new GradientPaint(0f,0f,blue,0f,30f,green); g2.setPaint(gp);