<< Chapter < Page Chapter >> Page >
Listing 9 - Perform the concatenated transform .
Graphics2D g2 = (Graphics2D)result.getGraphics(); g2.drawImage(pic.getImage(),translateTransform,null);return result; }//end rotatePicture}//end class Prob01Runner

Call the getGraphics method

Listing 9 begins by calling Ericson's getGraphics method on the new Picture object and casting the returned value to the standard type Graphics2D .

A cast is required

Ericson's getGraphics method returns a reference to the graphics context of the Picture object as type Graphics . That reference must be cast to type Graphics2D before the drawImage method can be called on the reference.

Call the drawImage method

Then Listing 9 calls the standard drawImage method on the reference to the graphics context passing three parameters to the method. Thisis one of two overloaded versions of the drawImage method defined in the standard Graphics2D class.

The first parameter

The first required parameter for this version of the drawImage method is a reference to an object of type Image containing the image that is to be drawn. In this case, Ericson's getImage method is called on the Picture object to get the image and pass it as the first parameter.

The second parameter

The second required parameter is a reference to an AffineTransform object that is to be applied to the image before it is drawn. Our concatenatedtransform object is passed as the second parameter.

The third parameter

The third required parameter is a reference to an object of the standard type ImageObserver or null . If you would like to know more about the use of an ImageObserver object, go to Google and search for the following keywords:

richard baldwin java imageobserver

We don't need an image observer in this case so Listing 9 passes null for the third parameter.

When the drawImage method returns

When the drawImage method returns, the image will have been rotated, translated, and drawn in the center of the new Picture object as shown in Figure 3 .

Return a Picture and terminate the method

Listing 9 returns a reference to the Picture object, (which now contains the rotated image) and terminates, returning control to the run method in Listing 3 .

Return to the run method

Returning to the run method in Listing 3 , we see that the remaining code in the run method:

  • Calls Ericson's explore method on the returned Picture object producing the screen output shown in Figure 3 .
  • Passes the returned Picture object to the println method producing the last line of text output shown in Figure 4 .
  • Returns control the main method in Listing 1 , causing the program to terminate as soon as the user dismisses both images from thescreen.

Run the program

I encourage you to copy the code from Listing 10 . Compile the code and execute it. Experiment with the code, making changes, andobserving the results of your changes. For example, try reversing the order of translation and rotation beginning with Listing 7 . Make certain that you can explain why your changes behave as they do.

Click Prob01.jpg to download the required input image file.

Summary

You learned how to scale images and how to rotate and translate images using the AffineTransform class.

Questions & Answers

what is phylogeny
Odigie Reply
evolutionary history and relationship of an organism or group of organisms
AI-Robot
ok
Deng
what is biology
Hajah Reply
the study of living organisms and their interactions with one another and their environments
AI-Robot
cell is the smallest unit of the humanity biologically
Abraham
what is biology
Victoria Reply
what is biology
Abraham
HOW CAN MAN ORGAN FUNCTION
Alfred Reply
the diagram of the digestive system
Assiatu Reply
allimentary cannel
Ogenrwot
How does twins formed
William Reply
They formed in two ways first when one sperm and one egg are splited by mitosis or two sperm and two eggs join together
Oluwatobi
what is genetics
Josephine Reply
Genetics is the study of heredity
Misack
how does twins formed?
Misack
What is manual
Hassan Reply
discuss biological phenomenon and provide pieces of evidence to show that it was responsible for the formation of eukaryotic organelles
Joseph Reply
what is biology
Yousuf Reply
the study of living organisms and their interactions with one another and their environment.
Wine
discuss the biological phenomenon and provide pieces of evidence to show that it was responsible for the formation of eukaryotic organelles in an essay form
Joseph Reply
what is the blood cells
Shaker Reply
list any five characteristics of the blood cells
Shaker
lack electricity and its more savely than electronic microscope because its naturally by using of light
Abdullahi Reply
advantage of electronic microscope is easily and clearly while disadvantage is dangerous because its electronic. advantage of light microscope is savely and naturally by sun while disadvantage is not easily,means its not sharp and not clear
Abdullahi
cell theory state that every organisms composed of one or more cell,cell is the basic unit of life
Abdullahi
is like gone fail us
DENG
cells is the basic structure and functions of all living things
Ramadan
What is classification
ISCONT Reply
is organisms that are similar into groups called tara
Yamosa
in what situation (s) would be the use of a scanning electron microscope be ideal and why?
Kenna Reply
A scanning electron microscope (SEM) is ideal for situations requiring high-resolution imaging of surfaces. It is commonly used in materials science, biology, and geology to examine the topography and composition of samples at a nanoscale level. SEM is particularly useful for studying fine details,
Hilary
Biology is a branch of Natural science which deals/About living Organism.
Ahmedin Reply
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Object-oriented programming (oop) with java. OpenStax CNX. Jun 29, 2016 Download for free at https://legacy.cnx.org/content/col11441/1.201
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Object-oriented programming (oop) with java' conversation and receive update notifications?

Ask