org.apache.batik.ext.awt.image.rendered
Class IndexImage
java.lang.Object
org.apache.batik.ext.awt.image.rendered.IndexImage
public class IndexImage
- extends Object
This class implements an adaptive palette generator to reduce images to a
specified number of colors.
Ideally this would also support a better dither option than just
the JDK's pattern dither.
The algorithm used is the 'Median Cut Algorithm' published by
Paul Heckbert in early '80s.
- Version:
- $Id: IndexImage.java 1733416 2016-03-03 07:07:13Z gadams $
- Author:
- Thomas DeWeese, Jun Inamori
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
IndexImage
public IndexImage()
getIndexedImage
public static BufferedImage getIndexedImage(BufferedImage bi,
int nColors)
- Converts the input image (must be TYPE_INT_RGB or
TYPE_INT_ARGB) to an indexed image. Generating an adaptive
palette with number of colors specified.
- Parameters:
bi - the image to be processed.nColors - number of colors in the palette
Copyright © 2000–2017 Apache Software Foundation. All rights reserved.