API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.imageio.event. IIOReadUpdateListener View Source
Author(s)
Since
Version
0.5
Serial
Hierarchy
 EventListener
      IIOReadUpdateListener
Subinterfaces
Description
public interface IIOReadUpdateListener
  An interface used by ImageReader implementations to notify callers of their image and thumbnail reading methods of pixel updates.
Methods
Hide/Show inherited methods
public void 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.
public void passComplete (ImageReader source, BufferedImage theImage)
  Reports that the current read operation has completed a progressive pass.
public void 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.
public void thumbnailPassComplete (ImageReader source, BufferedImage theThumbnail)
  Reports that the current thumbnail read operation has completed a progressive pass.
public void thumbnailPassStarted (ImageReader source, BufferedImage theThumbnail, int pass, int minPass, int maxPass, int minX, int minY, int periodX, int periodY, int[] bands)
  Reports that the current thumbnail read operation is about to begin a progressive pass.
public void thumbnailUpdate (ImageReader source, BufferedImage theThumbnail, int minX, int minY, int width, int height, int periodX, int periodY, int[] bands)
  Reports that a given region of a thumbnail image has been updated.
Fields
Hide/Show inherited fields
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar