1 51 package org.apache.fop.image.analyser; 52 53 import java.io.BufferedInputStream ; 55 import java.io.IOException ; 56 57 61 public interface ImageReader { 62 63 69 boolean verifySignature(String uri, BufferedInputStream bis) 70 throws IOException ; 71 72 76 BufferedInputStream getInputStream(); 77 78 82 String getMimeType(); 83 84 88 int getHeight(); 89 90 94 int getWidth(); 95 } 96 97 | Popular Tags |