Changed Constructors |
MemoryImageSource(int, int, int[], int, int)
|
Documentation changed from old to new. |
Constructs an ImageProducer object which uses an array of integers in the default RGB ColorModel to produce data for an Image object. |
MemoryImageSource(int, int, int[], int, int, Hashtable)
|
Documentation changed from old to new. |
Constructs an ImageProducer object which uses an array of integers in the default RGB ColorModel to produce data for an Image object. |
MemoryImageSource(int, int, ColorModel, byte[], int, int)
|
Documentation changed from old to new. |
Constructs an ImageProducer object which uses an array of bytes to produce data for an Image object. |
MemoryImageSource(int, int, ColorModel, byte[], int, int, Hashtable)
|
Documentation changed from old to new. |
Constructs an ImageProducer object which uses an array of bytes to produce data for an Image object. |
MemoryImageSource(int, int, ColorModel, int[], int, int)
|
Documentation changed from old to new. |
Constructs an ImageProducer object which uses an array of integers to produce data for an Image object. |
MemoryImageSource(int, int, ColorModel, int[], int, int, Hashtable)
|
Documentation changed from old to new. |
Constructs an ImageProducer object which uses an array of integers to produce data for an Image object. |
Changed Methods |
void addConsumer(ImageConsumer )
|
Documentation changed from old to new. |
Adds an ImageConsumer to the list of consumers interested in data for this image. |
boolean isConsumer(ImageConsumer )
|
Documentation changed from old to new. |
Determines if an ImageConsumer is on the list of consumers currently interested in data for this image. |
void removeConsumer(ImageConsumer )
|
Documentation changed from old to new. |
Removes an ImageConsumer from the list of consumers interested in data for this image. |
void requestTopDownLeftRightResend(ImageConsumer )
|
Documentation changed from old to new. |
Requests that a given ImageConsumer have the image data delivered one more time in top-down left-right order. |
void setAnimated(boolean )
|
Documentation changed from old to new. |
Changes this memory image into a multi-frame animation or a single-frame static image depending on the animated parameter. |
void setFullBufferUpdates(boolean )
|
Documentation changed from old to new. |
Specifies whether this animated memory image should always be updated by sending the complete buffer of pixels whenever there is a change. |
void startProduction(ImageConsumer )
|
Documentation changed from old to new. |
Adds an ImageConsumer to the list of consumers interested in data for this image and immediately starts delivery of the image data through the ImageConsumer interface. |
void newPixels()
|
Documentation changed from old to new. |
Sends a whole new buffer of pixels to any ImageConsumers that are currently interested in the data for this image and notify them that an animation frame is complete. |
void newPixels(byte[], ColorModel, int, int)
|
Documentation changed from old to new. |
Changes to a new byte array to hold the pixels for this image. |
void newPixels(int, int, int, int)
|
Documentation changed from old to new. |
Sends a rectangular region of the buffer of pixels to any ImageConsumers that are currently interested in the data for this image and notify them that an animation frame is complete. |
void newPixels(int, int, int, int, boolean)
|
Documentation changed from old to new. |
Sends a rectangular region of the buffer of pixels to any ImageConsumers that are currently interested in the data for this image. |
void newPixels(int[], ColorModel, int, int)
|
Documentation changed from old to new. |
Changes to a new int array to hold the pixels for this image. |