ImageObserverpublic interface ImageObserver the ImageObserver interface is an asynchronous update interface for receiving
notifications about Image construction status. |
Fields Summary |
---|
public static final int | WIDTHThe Constant WIDTH indicates that the width of the image is available. | public static final int | HEIGHTThe Constant HEIGHT indicates that the width of the image is available. | public static final int | PROPERTIESThe Constant PROPERTIES indicates that the properties of the image are
available. | public static final int | SOMEBITSThe Constant SOMEBITS indicates that more bits needed for drawing a
scaled variation of the image pixels are available. | public static final int | FRAMEBITSThe Constant FRAMEBITS indicates that complete frame of a image which was
previously drawn is now available for drawing again. | public static final int | ALLBITSThe Constant ALLBITS indicates that an image which was previously drawn
is now complete and can be drawn again. | public static final int | ERRORThe Constant ERROR indicates that error occurred. | public static final int | ABORTThe Constant ABORT indicates that the image producing is aborted. |
Methods Summary |
---|
public boolean | imageUpdate(java.awt.Image img, int infoflags, int x, int y, int width, int height)This method is called when information about an Image interface becomes
available. This method returns true if further updates are needed, false
if not.
|
|