// Copyright 2003, FreeHEP. package org.freehep.graphicsio; import java.util.Properties; import com.google.code.appengine.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: ImageParamConverter.java 8585 2006-08-11 17:39:56Z duns $ */ public interface ImageParamConverter { /** * Returns a subclass of ImageWriteParam with all the instance variable set * according to the properties */ public ImageWriteParam getWriteParam(Properties properties); }