view common/src/main/java/digilib/io/ImageStream.java @ 906:28d007673346

really works with streams now. (only with ImageLoaderDocuImage with reuseReader=true)
author robcast
date Wed, 04 May 2011 15:04:38 +0200
parents 7779b37d1d05
children
line wrap: on
line source

/**
 * 
 */
package digilib.io;

import java.io.InputStream;

/**
 * @author casties
 * 
 */
public class ImageStream extends ImageInput {

    protected InputStream stream = null;

    /** Create ImageStream from InputStream and String.
     * 
     * @param stream
     * @param mimeType mime-type
     */
    public ImageStream(InputStream stream, String mimeType) {
        this.stream = stream;
        this.mimetype = mimeType;
    }

    /*
     * (non-Javadoc)
     * 
     * @see digilib.io.ImageInput#hasInputStream()
     */
    @Override
    public boolean hasInputStream() {
        return true;
    }

    /*
     * (non-Javadoc)
     * 
     * @see digilib.io.ImageInput#getInputStream()
     */
    @Override
    public InputStream getInputStream() {
        return stream;
    }

}