public interface IIOWriteProgressListener extends java.util.EventListener
| Modifier and Type | Method and Description |
|---|---|
void |
imageComplete(javax.imageio.ImageWriter source)
Reports that an image write operation has completed.
|
void |
imageProgress(javax.imageio.ImageWriter source,
float percentageDone)
Reports the approximate percentage of completion of an image write
operation.
|
void |
imageStarted(javax.imageio.ImageWriter source,
int imageIndex)
Reports that a thumbnail write operation has started.
|
void |
thumbnailComplete(javax.imageio.ImageWriter source)
Reports that a thumbnail write operation has completed.
|
void |
thumbnailProgress(javax.imageio.ImageWriter source,
float percentageDone)
Reports the approximate percentage of completion of a thumbnail write
operation.
|
void |
thumbnailStarted(javax.imageio.ImageWriter source,
int imageIndex,
int thumnailIndex)
Reports that a thumbnail write operation is beginning.
|
void |
writeAborted(javax.imageio.ImageWriter source)
Reports that an image write operation is aborted.
|
void imageComplete(javax.imageio.ImageWriter source)
source - the ImageWriter object calling this methodvoid imageProgress(javax.imageio.ImageWriter source, float percentageDone)
source - the ImageWriter object calling this methodpercentageDone - the approximate percentage of decoding completedvoid imageStarted(javax.imageio.ImageWriter source, int imageIndex)
source - the ImageWriter object calling this methodimageIndex - the index of the image being writtenvoid thumbnailComplete(javax.imageio.ImageWriter source)
source - the ImageWriter object calling this methodvoid thumbnailProgress(javax.imageio.ImageWriter source, float percentageDone)
source - the ImageWriter object calling this methodpercentageDone - the approximate percentage of decoding completedvoid thumbnailStarted(javax.imageio.ImageWriter source, int imageIndex, int thumnailIndex)
source - the ImageWriter object calling this methodimageIndex - the index of the image being writtenthumnailIndex - the index of the thumbnail being writtenvoid writeAborted(javax.imageio.ImageWriter source)
source - the ImageWriter object calling this method