org.freehep.graphicsio.ImageParamConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of freehep-graphicsio Show documentation
Show all versions of freehep-graphicsio Show documentation
FreeHEP GraphicsIO Base Library
// Copyright 2003, FreeHEP.
package org.freehep.graphicsio;
import java.util.Properties;
import javax.imageio.ImageWriteParam;
/**
* This interface is to be implemented by sub classes of ImageWriteParam to make
* properties available to the ImageWriter as an ImageWriteParam object.
*
* @author Mark Donszelmann
* @version $Id: freehep-graphicsio/src/main/java/org/freehep/graphicsio/ImageParamConverter.java 4a3e7879b7eb 2006/08/11 17:39:56 duns $
*/
public interface ImageParamConverter {
/**
* Returns a subclass of ImageWriteParam with all the instance variable set
* according to the properties
*/
public ImageWriteParam getWriteParam(Properties properties);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy