org.swiftboot.sheet.meta.PictureLoader Maven / Gradle / Ivy
package org.swiftboot.sheet.meta;
import java.io.IOException;
/**
* Picture loader for client to input picture data.
*
* @author swiftech
*/
@FunctionalInterface
public interface PictureLoader {
/**
* Create {@code Picture} with picture type and data in binary.
*
* @return
* @throws IOException
*/
Picture get() throws IOException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy