Methods Summary |
---|
public abstract boolean | contentsLost()Returns true if rendering data is lost during validating. This method
should be called after rendering operation of image.
|
public abstract java.awt.Graphics2D | createGraphics()Creates a Graphics2D used to draw in this VolatileImage.
|
public void | flush()
|
public abstract java.awt.ImageCapabilities | getCapabilities()Gets the ImageCapabilities of this VolatileImage.
|
public java.awt.Graphics | getGraphics()
return createGraphics();
|
public abstract int | getHeight()Gets the height of this VolatileImage.
|
public abstract java.awt.image.BufferedImage | getSnapshot()Gets a BufferedImage representation of current VolatileImage that won't
be affected by any changes to this VolatileImage.
|
public java.awt.image.ImageProducer | getSource()
return getSnapshot().getSource();
|
public int | getTransparency()
return transparency;
|
public abstract int | getWidth()Gets the width of this VolatileImage.
|
public abstract int | validate(java.awt.GraphicsConfiguration gc)Validates the drawing surface of the image if the surface had been lost
and if the specified GraphicsConfiguration object is applicable to this
image.
|