* method : reduceColors, reduces the color range for the appropriate format *
****************************************************************************/
ImageProcessor reduceColors(ImageProcessor ip) {
MedianCut mc = new MedianCut((int[])ip.getPixels(), ip.getWidth(), ip.getHeight());
Image img = mc.convert(256);
return(new ByteProcessor(img));
}
}