javax.imageio.event
public interface IIOReadProgressListener extends EventListener
Method Summary | |
---|---|
void | imageComplete(ImageReader source)
Reports that the current image read operation has completed.
|
void | imageProgress(ImageReader source, float percentageDone)
Reports the approximate percentage of completions of this image read
operation.
|
void | imageStarted(ImageReader source, int imageIndex)
Reports that the current image read operation has started.
|
void | readAborted(ImageReader source)
Reports that a read operation has been aborted.
|
void | sequenceComplete(ImageReader source)
Reports that a sequence of read operationshas completed.
|
void | sequenceStarted(ImageReader source, int minIndex)
Reports that a sequence of read operations is beginning.
|
void | thumbnailComplete(ImageReader source)
Reports that a thumbnail read operation has completed.
|
void | thumbnailProgress(ImageReader source, float percentageDone)
Reports the approximate percentage of completion of a thumbnail read
operation.
|
void | thumbnailStarted(ImageReader source, int imageIndex, int thumbnailIndex)
Reports that a thumbnail read operation is beginning.
|
Parameters: source the ImageReader
object calling this method
Parameters: source the ImageReader
object calling this method percentageDone the approximate percentage of encoding completed
Parameters: source the ImageReader
object calling this method imageIndex the index of the image to read
Parameters: source the ImageReader
object calling this method
Parameters: source the ImageReader
object calling this method
Parameters: source the ImageReader
object calling this method minIndex the index of the first image to be read
Parameters: source the ImageReader
object calling this method
Parameters: source the ImageReader
object calling this method percentageDone the approximate percentage of encoding completed
Parameters: source the ImageReader
object calling this method imageIndex the index of the image being read thumbnailIndex the index of the thumbnail being read