Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

javax.imageio.event
Interface IIOReadUpdateListener  view IIOReadUpdateListener download IIOReadUpdateListener.java

All Superinterfaces:
java.util.EventListener

public interface IIOReadUpdateListener
extends java.util.EventListener


Method Summary
 void imageUpdate(javax.imageio.ImageReader source, java.awt.image.BufferedImage image, 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 passComplete(javax.imageio.ImageReader source, java.awt.image.BufferedImage image)
          Reports that the current read operation has completed a progressive pass.
 void passStarted(javax.imageio.ImageReader source, java.awt.image.BufferedImage image, 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 thumbnailPassComplete(javax.imageio.ImageReader source, java.awt.image.BufferedImage image)
          Reports that the current thumbnail read operation has completed a progressive pass.
 void thumbnailPassStarted(javax.imageio.ImageReader source, java.awt.image.BufferedImage image, 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.
 void thumbnailUpdate(javax.imageio.ImageReader source, java.awt.image.BufferedImage image, 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.
 

Method Detail

imageUpdate

public void imageUpdate(javax.imageio.ImageReader source,
                        java.awt.image.BufferedImage image,
                        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.


passComplete

public void passComplete(javax.imageio.ImageReader source,
                         java.awt.image.BufferedImage image)
Reports that the current read operation has completed a progressive pass.


passStarted

public void passStarted(javax.imageio.ImageReader source,
                        java.awt.image.BufferedImage image,
                        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.


thumbnailPassComplete

public void thumbnailPassComplete(javax.imageio.ImageReader source,
                                  java.awt.image.BufferedImage image)
Reports that the current thumbnail read operation has completed a progressive pass.


thumbnailPassStarted

public void thumbnailPassStarted(javax.imageio.ImageReader source,
                                 java.awt.image.BufferedImage image,
                                 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.


thumbnailUpdate

public void thumbnailUpdate(javax.imageio.ImageReader source,
                            java.awt.image.BufferedImage image,
                            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.