comparison servlet/src/digilib/image/DocuImage.java @ 462:03ff7238c9d4

second try for flashpix support (doesn't work currently...)
author robcast
date Mon, 13 Feb 2006 13:01:42 +0100
parents d5fe845db95f
children d76a9e3f1ec9
comparison
equal deleted inserted replaced
461:96bd3656e4a6 462:03ff7238c9d4
19 */ 19 */
20 20
21 package digilib.image; 21 package digilib.image;
22 22
23 import java.awt.Rectangle; 23 import java.awt.Rectangle;
24 import java.io.IOException;
24 import java.io.OutputStream; 25 import java.io.OutputStream;
25 26
26 import digilib.io.ImageFile; 27 import digilib.io.ImageFile;
27 import digilib.io.FileOpException; 28 import digilib.io.FileOpException;
28 29
207 * Things that should be freed are image objects and open files. 208 * Things that should be freed are image objects and open files.
208 * 209 *
209 */ 210 */
210 public void dispose(); 211 public void dispose();
211 212
213 /**
214 * Check image size and type and store in ImageFile f
215 */
216 public boolean identify(ImageFile imgf) throws IOException;
217
212 } 218 }