<< 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

start new n questions too
Emmaunella Reply
summarize halerambos & holbon
David Reply
the Three stages of Auguste Comte
Clementina Reply
what are agents of socialization
Antonio Reply
sociology of education
Nuhu Reply
definition of sociology of education
Nuhu
definition of sociology of education
Emmaunella
what is culture
Abdulrahim Reply
shared beliefs, values, and practices
AI-Robot
What are the two type of scientific method
ogunniran Reply
I'm willing to join you
Aceng Reply
what are the scientific method of sociology
Man
what is socialization
ogunniran Reply
the process wherein people come to understand societal norms and expectations, to accept society's beliefs, and to be aware of societal values
AI-Robot
scientific method in doing research
ogunniran
defimition of sickness in afica
Anita
Cosmology
ogunniran
Hmmm
ogunniran
list and explain the terms that found in society
REMMY Reply
list and explain the terms that found in society
Mukhtar
what are the agents of socialization
Antonio
Family Peer group Institution
Abdulwajud
I mean the definition
Antonio
ways of perceived deviance indifferent society
Naomi Reply
reasons of joining groups
SAM
to bring development to the nation at large
Hyellafiya
entails of consultative and consensus building from others
Gadama
World first Sociologist?
Abu
What is evolutionary model
Muhammad Reply
Evolution models refer to mathematical and computational representations of the processes involved in biological evolution. These models aim to simulate and understand how species change over time through mechanisms such as natural selection, genetic drift, and mutation. Evolutionary models can be u
faruk
what are the modern trends in religious behaviours
Selekeye Reply
what are social norms
Daniel Reply
shared standards of acceptable behavior by the group or appropriate behavior in a particular institution or those behaviors that are acceptable in a society
Lucius
that is how i understood it
Lucius
examples of societal norms
Diamond
Discuss the characteristics of the research located within positivist and the interpretivist paradigm
Tariro 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