ImageInputSource.java 289 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.internal.pdftoolkit.image;

import java.io.IOException;
import java.io.InputStream;

public interface ImageInputSource {
    public InputStream getImageInputStream() throws IOException;

    public void close() throws IOException;
}