1 7 8 package javax.imageio.event; 9 10 import java.awt.image.BufferedImage ; 11 import java.util.EventListener ; 12 import javax.imageio.ImageReader ; 13 14 24 public interface IIOReadUpdateListener extends EventListener { 25 26 59 void passStarted(ImageReader source, 60 BufferedImage theImage, 61 int pass, 62 int minPass, int maxPass, 63 int minX, int minY, 64 int periodX, int periodY, 65 int[] bands); 66 67 128 void imageUpdate(ImageReader source, 129 BufferedImage theImage, 130 int minX, int minY, 131 int width, int height, 132 int periodX, int periodY, 133 int[] bands); 134 135 148 void passComplete(ImageReader source, BufferedImage theImage); 149 150 178 void thumbnailPassStarted(ImageReader source, 179 BufferedImage theThumbnail, 180 int pass, 181 int minPass, int maxPass, 182 int minX, int minY, 183 int periodX, int periodY, 184 int[] bands); 185 186 210 void thumbnailUpdate(ImageReader source, 211 BufferedImage theThumbnail, 212 int minX, int minY, 213 int width, int height, 214 int periodX, int periodY, 215 int[] bands); 216 217 231 void thumbnailPassComplete(ImageReader source, BufferedImage theThumbnail); 232 } 233 | Popular Tags |