Java Programming, Lecture Notes # 322
March 20, 2000
You also need to understand some other classes and interfaces
I also explained that without understanding the behavior of other classes and interfaces, it is not possible to fully understand the inner workings of the Graphics2D class.
Throughout this series of lessons, I have been providing you with information and sample programs designed to help you understand the various classes and interfaces that are necessary for an understanding of the Graphics2D class.
Two ways to achieve transparency
There are at least two different ways to achieve transparency in Java 2D. One approach is to use new constructors for the Color class that allow you to create solid colors with a specified degree of transparency. I will discuss that approach in a subsequent lesson.
A more general approach
A second, and possibly more general approach, is to make use of an object that implement the Composite interface, passing a reference to that object to the setComposite() method of the Graphics2D class.
You already know about solid colors
An earlier lesson explained the use of the Composite interface for solid colors.
Color gradients
This lesson is designed to give you an understanding of the combination of color gradients and the Composite interface.
Many compositing rules
An object of the AlphaComposite class can be used to implement any one of about eight different compositing rules.
When you draw something, a new source pixel can overlay an existing destination pixel. The manner in which the color components of the destination pixel are determined depends on the specific rule being applied.
Flanagan explains the rules
You can read about the different rules in Java Foundation Classes in a Nutshell, by David Flanagan.
In these lessons, I will illustrate only one of the compositing rules: the rule known as SRC_OVER.
According to Flanagan, this is “By far the most commonly used compositing rule.” I explained this rule in detail in an earlier lesson, so I won’t repeat that explanation here.
public static AlphaComposite getInstance(int rule, float alpha)
Creates an AlphaComposite object with the specified rule and the constant alpha to multiply with the alpha of the source. The source is multiplied with the specified alpha before being composited with the destination. Parameters:
|
You specify the rule by passing an int value given by one of the symbolic constants of the AlphaComposite class, such as SRC_OVER described earlier.
public abstract void setComposite( Composite comp) Sets the Composite for the Graphics2D context. The Composite is used in all drawing methods such as drawImage, drawString, draw, and fill. It specifies how new pixels are to be combined with the existing pixels on the graphics device during the rendering process. Parameters:
|
The required parameter is a reference to any object that implements the Composite interface, meaning that you could define your own class to implement this interface.
In this lesson, I elected to make use of the existing AlphaComposite class described above.
A screen shot of the output
In case you are unable, for some reason, to compile and run the program, here is a screen shot of the program output. However, this image has been reduced to about seventy-percent of its original size in pixels. Therefore, some of the quality was lost in the reduction process.
The GUI is a Frame object
The program draws a four-inch by four-inch Frame on the screen. It translates the origin to the center of the Frame. Then it draws a pair of X and Y-axes centered on the new origin.
A large circle
After drawing the X and Y-axes, the program draws a circle with a thick border centered on the origin. This circle is used later to provide visual cues relative to transparency.
Transparent ellipses
After the large circle is drawn, three ellipses are drawn on top of one another in each quadrant.
Each ellipse has a common center, and is rotated by sixty degrees relative to the ellipse beneath it.
Color gradient
The color of each ellipse is based on a color gradient. The color of the ellipse on the bottom of the stack is a gradient from red to green. The ellipse in the center of the stack is a gradient from green to blue. The ellipse on the top of the stack is a gradient from blue to red.
Different transparency values
The different ellipses are given various transparency values in the different quadrants to illustrate the effect of the alpha parameter of the setComposite() method.
Transparency by quadrant
Here is the transparency given to each of the ellipses in the different
quadrants.
TRANSPARENCY
Upper-left quadrant No transparency Upper-right quadrant
Lower-left quadrant
Lower-right quadrant
|
As you can see from the information given above, the red-to-green ellipse is opaque in all four quadrants. As a result, the large black circle doesn’t show through the red-to-green ellipse in any of the quadrants.
Upper-left quadrant
All three ellipses are opaque in the upper-left quadrant, so nothing shows through, and the stacking order of the ellipses is pretty obvious.
Other ellipses become transparent
The other two ellipses are made progressively more transparent as you move through the other three quadrants. As a result, you can “see through” the green-to-blue and blue-to-red ellipses. In other words, you can see the geometric figures that lie beneath them (the other ellipses and the large black circle).
Upper-right quadrant
In this quadrant, the blue-to-red ellipse is transparent, but the green-to-blue ellipse and the red-to-green ellipse are opaque. Neither the large circle nor the red-to-green ellipse can be seen through the green-to-blue ellipse.
However, both of the other ellipses show through the blue-to-red ellipse in the upper-right quadrant.
Similar to previous lesson
The material in this lesson is very similar to a previous lesson except for the use of color gradients in this lesson as opposed to solid colors in the previous lesson. Therefore, I am not going to discuss the output of this program in detail.
Illustrates rotation and translation
As mentioned in the earlier lesson, this lesson also provides a good illustration of the benefits of rotation and translation.
Uses the AffineTransform
The task of rotating the ellipses relative to each other and the task of translating them into the various quadrants was made much easier (even possible) through the use of the AffineTransform to rotate and translate the ellipses.
Rotation was especially useful in this lesson
The benefits of rotation are particularly significant in this lesson where it was necessary to specify the coordinates of the ends of each ellipse to create the color gradient. Because this was accomplished before rotating the ellipses, the task was very easy. Had it been necessary to specify the ends of rotated ellipses, the task would have been much more difficult.
The normal caveat regarding inches
This discussion of dimensions in inches on the screen depends on the method named getScreenResolution() returning the correct value. However, the getScreenResolution() method always seems to return 120 on my computer regardless of the actual screen resolution settings. |
Will discuss in fragments
I will briefly discuss this program in fragments. The controlling class and the constructor for the GUI class are essentially the same as you have seen in several previous lessons, so, I won’t repeat that discussion here. You can view that material in the complete listing of the program at the end of the lesson.
All of the interesting action takes place in the overridden paint() method, so I will begin the discussion there.
Overridden paint() method
The beginning portions of the overridden paint() method should be familiar to you by now as well. So, I am going to let the comments in Figure 1 speak for themselves.
The large circle
The code in Figure 2 draws the large circle with a border width of 0.1 inches. There is nothing new here, so I won’t provide an explanation.
An ellipse reference variable
Figure 3 simply declares a reference variable of the class Ellipse2D.Double. This reference variable will be used repeatedly in subsequent code for the instantiation of ellipse objects.
Translation
The code in Figure 4 translates the origin to the center of what was previously the upper-left quadrant. After this statement is executed, any geometric figure that is drawn centered on the origin will actually be rendered in the center of what was earlier the upper-left quadrant.
Opaque red-to-green ellipse
The code in Figure 5 draws and fills an opaque ellipse with a red-to-green gradient centered on the new origin.
The code has been covered in previous lessons, so I won’t discuss it further in this lesson. The only thing new here is the combined use of GradientPaint and setComposite().
From this point on, everything is pretty much business as usual, so I will terminate the discussion at this point and refer you to the complete listing of the program at the end of the lesson.
The new material in the lesson was the combined use of GradientPaint and setComposite().
The sample program in this lesson concentrates on transparency as a way to demonstrate compositing pixels.
In addition, you have seen some additional uses for the translate and rotate transforms.
Copyright 2000, Richard G. Baldwin. Reproduction in whole or in part in any form or medium without express written permission from Richard Baldwin is prohibited.
About the author
Richard Baldwin is a college professor and private consultant whose primary focus is a combination of Java and XML. In addition to the many platform-independent benefits of Java applications, he believes that a combination of Java and XML will become the primary driving force in the delivery of structured information on the Web.
Richard has participated in numerous consulting projects involving Java, XML, or a combination of the two. He frequently provides onsite Java and/or XML training at the high-tech companies located in and around Austin, Texas. He is the author of Baldwin's Java Programming Tutorials, which has gained a worldwide following among experienced and aspiring Java programmers. He has also published articles on Java Programming in Java Pro magazine.
Richard holds an MSEE degree from Southern Methodist University and has many years of experience in the application of computer technology to real-world problems.
-end-