Java java.awt GraphicsConfiguration fields, constructors, methods, implement or subclass

Example usage for Java java.awt GraphicsConfiguration fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.awt GraphicsConfiguration.

The text is from its open source code.

Method

BufferedImagecreateCompatibleImage(int width, int height, int transparency)
Returns a BufferedImage that supports the specified transparency and has a data layout and color model compatible with this GraphicsConfiguration .
BufferedImagecreateCompatibleImage(int width, int height)
Returns a BufferedImage with a data layout and color model compatible with this GraphicsConfiguration .
VolatileImagecreateCompatibleVolatileImage(int width, int height, int transparency)
Returns a VolatileImage with a data layout and color model compatible with this GraphicsConfiguration .
VolatileImagecreateCompatibleVolatileImage(int width, int height, ImageCapabilities caps)
Returns a VolatileImage with a data layout and color model compatible with this GraphicsConfiguration , using the specified image capabilities.
VolatileImagecreateCompatibleVolatileImage(int width, int height)
Returns a VolatileImage with a data layout and color model compatible with this GraphicsConfiguration .
VolatileImagecreateCompatibleVolatileImage(int width, int height, ImageCapabilities caps, int transparency)
Returns a VolatileImage with a data layout and color model compatible with this GraphicsConfiguration , using the specified image capabilities and transparency value.
RectanglegetBounds()
Returns the bounds of the GraphicsConfiguration in the device coordinates.
BufferCapabilitiesgetBufferCapabilities()
Returns the buffering capabilities of this GraphicsConfiguration .
ColorModelgetColorModel(int transparency)
Returns the ColorModel associated with this GraphicsConfiguration that supports the specified transparency.
ColorModelgetColorModel()
Returns the ColorModel associated with this GraphicsConfiguration .
AffineTransformgetDefaultTransform()
Returns the default AffineTransform for this GraphicsConfiguration .
GraphicsDevicegetDevice()
Returns the GraphicsDevice associated with this GraphicsConfiguration .
ImageCapabilitiesgetImageCapabilities()
Returns the image capabilities of this GraphicsConfiguration .
AffineTransformgetNormalizingTransform()
Returns an AffineTransform that can be concatenated with the default AffineTransform of a GraphicsConfiguration so that 72 units in user space equals 1 inch in device space.
booleanisTranslucencyCapable()
Returns whether this GraphicsConfiguration supports the GraphicsDevice.WindowTranslucency#PERPIXEL_TRANSLUCENT PERPIXEL_TRANSLUCENT kind of translucency.