1 // Copyright 2006, FreeHEP.
2 package org.freehep.graphicsio.gif;
3
4 /**
5 * Creates colormap from set of pixels, making pixels index into the colormap.
6 *
7 * @author duns
8 * @version $Id$
9 */
10 public interface GIFColorMap {
11
12 public int[] create(int[][] pixels, int maxColors);
13 }