Methods Summary |
---|
public abstract java.awt.image.BufferedImage | createCompatibleImage(int width, int height)Creates BufferedImage image object with a data layout and color model
compatible with this GraphicsConfiguration with specified width and
height parameters.
|
public abstract java.awt.image.BufferedImage | createCompatibleImage(int width, int height, int transparency)Creates a BufferedImage that has the specified width, height,
transparency and has a data layout and color model compatible with this
GraphicsConfiguration.
|
public java.awt.image.VolatileImage | createCompatibleVolatileImage(int width, int height, java.awt.ImageCapabilities caps)Creates VolatileImage with specified width, height, ImageCapabilities; a
data layout and color model compatible with this GraphicsConfiguration.
VolatileImage res = createCompatibleVolatileImage(width, height);
if (!res.getCapabilities().equals(caps)) {
// awt.14A=Can not create VolatileImage with specified capabilities
throw new AWTException(Messages.getString("awt.14A")); //$NON-NLS-1$
}
return res;
|
public java.awt.image.VolatileImage | createCompatibleVolatileImage(int width, int height, java.awt.ImageCapabilities caps, int transparency)Creates a VolatileImage with specified width, height, transparency and
ImageCapabilities; a data layout and color model compatible with this
GraphicsConfiguration.
VolatileImage res = createCompatibleVolatileImage(width, height, transparency);
if (!res.getCapabilities().equals(caps)) {
// awt.14A=Can not create VolatileImage with specified capabilities
throw new AWTException(Messages.getString("awt.14A")); //$NON-NLS-1$
}
return res;
|
public abstract java.awt.image.VolatileImage | createCompatibleVolatileImage(int width, int height)Creates a VolatileImage that has the specified width and height and has a
data layout and color model compatible with this GraphicsConfiguration.
|
public abstract java.awt.image.VolatileImage | createCompatibleVolatileImage(int width, int height, int transparency)Creates a VolatileImage that supports the specified width, height,
transparency and has a data layout and color model compatible with this
GraphicsConfiguration.
|
public abstract java.awt.Rectangle | getBounds()Gets the bounds of area covered by the GraphicsConfiguration in the
device coordinates space.
|
public java.awt.BufferCapabilities | getBufferCapabilities()Gets the buffering capabilities of the GraphicsConfiguration.
return new BufferCapabilities(new ImageCapabilities(false), new ImageCapabilities(false),
BufferCapabilities.FlipContents.UNDEFINED);
|
public abstract java.awt.image.ColorModel | getColorModel()Gets the ColorModel of the GraphicsConfiguration.
|
public abstract java.awt.image.ColorModel | getColorModel(int transparency)Gets the ColorModel of the GraphicsConfiguration which supports specified
Transparency.
|
public abstract java.awt.geom.AffineTransform | getDefaultTransform()Gets the default AffineTransform of the GraphicsConfiguration. This
method translates user coordinates to device coordinates.
|
public abstract java.awt.GraphicsDevice | getDevice()Gets the GraphicsDevice of the GraphicsConfiguration.
|
public java.awt.ImageCapabilities | getImageCapabilities()Gets the image capabilities of the GraphicsConfiguration.
return new ImageCapabilities(false);
|
public abstract java.awt.geom.AffineTransform | getNormalizingTransform()Gets the normalizing AffineTransform of the GraphicsConfiguration.
|