com.twelvemonkeys.imageio.metadata.MetadataWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of imageio-metadata Show documentation
Show all versions of imageio-metadata Show documentation
TwelveMonkeys ImageIO metadata support classes.
package com.twelvemonkeys.imageio.metadata;
import javax.imageio.stream.ImageOutputStream;
import java.io.IOException;
/**
* MetadataWriter.
*
* @author Harald Kuhr
* @author last modified by $Author: harald.kuhr$
* @version $Id: MetadataWriter.java,v 1.0 28/05/15 harald.kuhr Exp$
*/
public abstract class MetadataWriter {
abstract public boolean write(Directory directory, ImageOutputStream stream) throws IOException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy