package org.mmbase.module.builders;

import java.util.List;
import java.util.Map;

/**
 * @author gvdl
 *
 * To change this generated comment edit the template variable "typecomment":
 * Window>Preferences>Java>Templates.
 */
public class ConvertDummy implements ImageConvertInterface {

	/**
	 * Constructor for ConvertDummy.
	 */
	public ConvertDummy() {
		super();
	}

	/**
	 * @see ImageConvertInterface#init(Map)
	 */
	public void init(Map params) {
	}

	/**
	 * @see ImageConvertInterface#ConvertImage(byte[], List)
	 */
	public byte[] ConvertImage(byte[] input, List commands) {
		return convertImage(input, commands);
	}

	/**
	 * @see ImageConvertInterface#convertImage(byte[], List)
	 */
	public byte[] convertImage(byte[] input, List commands) {
		return input;
	}

}
