Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

Copyright © 2006 Sun Microsystems, Inc. All rights reserved.

JSR-209 (Final Approval Ballot)

Uses of Class
javax.imageio.ImageReader

Packages that use ImageReader
javax.imageio The main package of the Java Image I/O API. 
javax.imageio.event A package of the Java Image I/O API dealing with synchronous notification of events during the reading and writing of images. 
 

Uses of ImageReader in javax.imageio
 

Methods in javax.imageio that return ImageReader
static ImageReader ImageIO.getImageReader(ImageWriter writer)
          Returns an ImageReadercorresponding to the given ImageWriter, if there is one, or null.
 

Methods in javax.imageio with parameters of type ImageReader
static ImageWriter ImageIO.getImageWriter(ImageReader reader)
          Returns an ImageWritercorresponding to the given ImageReader, if there is one, or null.
 

Uses of ImageReader in javax.imageio.event
 

Methods in javax.imageio.event with parameters of type ImageReader
 void IIOReadUpdateListener.passStarted(ImageReader source, BufferedImage theImage, int pass, int minPass, int maxPass, int minX, int minY, int periodX, int periodY, int[] bands)
          Reports that the current read operation is about to begin a progressive pass.
 void IIOReadUpdateListener.imageUpdate(ImageReader source, BufferedImage theImage, int minX, int minY, int width, int height, int periodX, int periodY, int[] bands)
          Reports that a given region of the image has been updated.
 void IIOReadUpdateListener.passComplete(ImageReader source, BufferedImage theImage)
          Reports that the current read operation has completed a progressive pass.
 void IIOReadWarningListener.warningOccurred(ImageReader source, java.lang.String warning)
          Reports the occurence of a non-fatal error in decoding.
 void IIOReadProgressListener.sequenceStarted(ImageReader source, int minIndex)
          Reports that a sequence of read operations is beginning.
 void IIOReadProgressListener.sequenceComplete(ImageReader source)
          Reports that a sequence of read operationshas completed.
 void IIOReadProgressListener.imageStarted(ImageReader source, int imageIndex)
          Reports that an image read operation is beginning.
 void IIOReadProgressListener.imageProgress(ImageReader source, float percentageDone)
          Reports the approximate degree of completion of the current read call of the associated ImageReader.
 void IIOReadProgressListener.imageComplete(ImageReader source)
          Reports that the current image read operation has completed.
 void IIOReadProgressListener.readAborted(ImageReader source)
          Reports that a read has been aborted via the reader's abort method.
 


JSR-209 (Final Approval Ballot)

Copyright © 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

For more information, please consult the JSR 209 specification.