Uses of Interface
org.apache.commons.imaging.palette.Palette
-
Packages that use Palette Package Description org.apache.commons.imaging.formats.png The PNG (Portable Network Graphics) image format.org.apache.commons.imaging.palette Color quantization and palette manipulation tools. -
-
Uses of Palette in org.apache.commons.imaging.formats.png
Methods in org.apache.commons.imaging.formats.png with parameters of type Palette Modifier and Type Method Description private voidPngWriter. writeChunkPLTE(java.io.OutputStream os, Palette palette)private voidPngWriter. writeChunkTRNS(java.io.OutputStream os, Palette palette) -
Uses of Palette in org.apache.commons.imaging.palette
Classes in org.apache.commons.imaging.palette that implement Palette Modifier and Type Class Description (package private) classMedianCutPaletteclassQuantizedPaletteclassSimplePaletteMethods in org.apache.commons.imaging.palette that return Palette Modifier and Type Method Description PalettePaletteFactory. makeExactRgbPaletteFancy(java.awt.image.BufferedImage src)Builds an exact complete opaque palette containing all the colors insrc, using an algorithm that is faster than PaletteFactory.makeExactRgbPaletteSimple(java.awt.image.BufferedImage, int) for large images but uses 2 mebibytes of working memory.PalettePaletteFactory. makeQuantizedRgbaPalette(java.awt.image.BufferedImage src, boolean transparent, int max)Builds an inexact possibly translucent palette of at mostmaxcolors insrcusing the traditional Median Cut algorithm.PalettePaletteFactory. makeQuantizedRgbPalette(java.awt.image.BufferedImage src, int max)Builds an inexact opaque palette of at mostmaxcolors insrcusing a variation of the Median Cut algorithm.PaletteMedianCutQuantizer. process(java.awt.image.BufferedImage image, int maxColors, MedianCut medianCut)Methods in org.apache.commons.imaging.palette with parameters of type Palette Modifier and Type Method Description static voidDithering. applyFloydSteinbergDithering(java.awt.image.BufferedImage image, Palette palette)Changes the given image to only use colors from the given palette, applying Floyd-Steinberg dithering in the process.
-