Sun Java Solaris Communities My SDN Account Join SDN
 
Code sample

Code Samples from the Java Developers Almanac 2000

 


Code Samples Index

These code examples and other materials are subject to Sun Microsystems, Inc. Legal Terms

Scaling, Shearing, Translating, and Rotating a Drawn Image

 AffineTransform tx = new AffineTransform();
 tx.scale(scalex, scaley);
 tx.shear(shiftx, shifty);
 tx.translate(x, y);
 tx.rotate(radians);
     
 g2d.drawImage(image, tx, this);
 

Examplets provided by permission of the publisher, Addision-Wesley, and Author Patrick Chan.

Order this book from Amazon