IIOReadUpdateListenerpublic interface IIOReadUpdateListener implements EventListenerThe IIOReadUpdateListener interface provides functionality to receive
notification of pixel updates during image and thumbnail reading operations. |
Methods Summary |
---|
public void | imageUpdate(javax.imageio.ImageReader source, java.awt.image.BufferedImage theImage, int minX, int minY, int width, int height, int periodX, int periodY, int[] bands)Notifies this listener that the specified area of the image has been
updated.
| public void | passComplete(javax.imageio.ImageReader source, java.awt.image.BufferedImage theImage)Notifies this listener that the current read operation has completed a
progressive pass.
| public void | passStarted(javax.imageio.ImageReader source, java.awt.image.BufferedImage theImage, int pass, int minPass, int maxPass, int minX, int minY, int periodX, int periodY, int[] bands)Notifies this listener that the current read operation has begun a
progressive pass.
| public void | thumbnailPassComplete(javax.imageio.ImageReader source, java.awt.image.BufferedImage theImage)Notifies this listener that the current thumbnail read operation has
completed a progressive pass.
| public void | thumbnailPassStarted(javax.imageio.ImageReader source, java.awt.image.BufferedImage theThumbnail, int pass, int minPass, int maxPass, int minX, int minY, int periodX, int periodY, int[] bands)Notifies this listener that the current thumbnail read operation has
begun a progressive pass.
| public void | thumbnailUpdate(javax.imageio.ImageReader source, java.awt.image.BufferedImage theThumbnail, int minX, int minY, int width, int height, int periodX, int periodY, int[] bands)Notifies this listener that a specified area of a thumbnail image has
been updated.
|
|