KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > util > images > ImageConverter


1 /*
2
3 This software is OSI Certified Open Source Software.
4 OSI Certified is a certification mark of the Open Source Initiative.
5
6 The license (Mozilla version 1.0) can be read at the MMBase site.
7 See http://www.MMBase.org/license
8
9 */

10 package org.mmbase.util.images;
11
12 /**
13  * Interface for classes that can convert images.
14  *
15  * @author Rico Jansen
16  */

17
18 import java.util.List JavaDoc;
19 import java.util.Map JavaDoc;
20
21 public interface ImageConverter {
22
23     void init(Map JavaDoc params);
24
25     byte[] convertImage(byte[] input, String JavaDoc sourceFormat, List JavaDoc commands);
26
27
28 }
29
Popular Tags