// Copyright 2003, FreeHEP. package org.xmind.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); }