View Javadoc

1   // Copyright 2006, FreeHEP.
2   package org.freehep.graphicsio.gif;
3   
4   /**
5    * Reduces the number of colors by looking for the nearest colors.
6    * 
7    * @author duns
8    * @version $Id$
9    */
10  public class GIFNearestColorMap implements GIFColorMap {
11  
12      public int[] create(int[][] pixels, int maxColors) {
13          return Quantize.quantizeImage(pixels, maxColors);
14      }
15  }