All Implemented Interfaces:
java$util$EventListener
ImageReader
implementations to
notify callers of their image and thumbnail reading methods of
progress.
This interface receives general indications of decoding
progress (via the imageProgress
and
thumbnailProgress
methods), and events indicating when
an entire image has been updated (via the
imageStarted
, imageComplete
,
thumbnailStarted
and thumbnailComplete
methods). Applications that wish to be informed of pixel updates
as they happen (for example, during progressive decoding), should
provide an IIOReadUpdateListener
.
Method from javax.imageio.event.IIOReadProgressListener Summary: |
---|
imageComplete, imageProgress, imageStarted, readAborted, sequenceComplete, sequenceStarted, thumbnailComplete, thumbnailProgress, thumbnailStarted |
Method from javax.imageio.event.IIOReadProgressListener Detail: |
---|
ImageReader implementations are required to
call this method exactly once upon completion of each image
read operation. |
read call of the associated
ImageReader .
The degree of completion is expressed as a percentage
varying from Each particular |
ImageReader implementations are required to call
this method exactly once when beginning an image read
operation. |
abort method. No further notifications will be
given. |
ImageReader implementations are required to call
this method exactly once from their
readAll(Iterator) method. |
ImageReader implementations are required to call
this method exactly once from their
readAll(Iterator) method. |
ImageReader implementations are required to call
this method exactly once upon completion of each thumbnail read
operation. |
getThumbnail call within the associated
ImageReader . The semantics are identical to those
of imageProgress . |
ImageReader implementations are required to call
this method exactly once when beginning a thumbnail read
operation. |