Java Swing Tutorial - Java GraphicsConfiguration .getNormalizingTransform ()








Syntax

GraphicsConfiguration.getNormalizingTransform() has the following syntax.

public abstract AffineTransform getNormalizingTransform()

Example

In the following code shows how to use GraphicsConfiguration.getNormalizingTransform() method.

//w  w w.j  a v  a 2 s. co m
import java.awt.GraphicsConfiguration;
import java.awt.GraphicsDevice;
import java.awt.GraphicsEnvironment;

public class Main {
    public static void main(String[] argv) {
        GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
        GraphicsDevice gs = ge.getDefaultScreenDevice();
        GraphicsConfiguration gc = gs.getDefaultConfiguration();
        System.out.println(gc.getNormalizingTransform());
    }
}

The code above generates the following result.