JIU 0.12.0 Homepage

Uses of Class
net.sourceforge.jiu.data.Palette

Packages that use Palette
net.sourceforge.jiu.codecs Provides classes to read images from and save them to files (or streams) in various file formats.  
net.sourceforge.jiu.codecs.tiff Classes to handle the Tagged Image File Format (TIFF).  
net.sourceforge.jiu.color Contains color-related operations that did not fit into one of the subpackages 
net.sourceforge.jiu.color.io Classes to read and write color-related data from and to files 
net.sourceforge.jiu.color.quantization Classes to perform color image quantization, the reduction of the number of unique colors in an image.  
net.sourceforge.jiu.data Provides classes to store images and data directly related to them.  
 

Uses of Palette in net.sourceforge.jiu.codecs
 

Methods in net.sourceforge.jiu.codecs that return Palette
static Palette PalmCodec.createSystem2BitGrayscalePalette()
          Creates the 2 bits per pixel Palm system palette with grayscale values.
static Palette PalmCodec.createSystem4BitColorPalette()
          Creates the 4 bits per pixel Palm system palette with color values.
static Palette PalmCodec.createSystem4BitGrayscalePalette()
          Creates the 4 bits per pixel Palm system palette with grayscale values.
static Palette PalmCodec.createSystem8BitPalette()
          Creates the 8 bits per pixel Palm system palette.
 

Methods in net.sourceforge.jiu.codecs with parameters of type Palette
static boolean PalmCodec.isPalmSystemPaletteGray4(Palette palette)
          Returns if the argument palette is the Palm system grayscale palette with 4 entries.
static boolean PalmCodec.isPalmSystemPaletteGray16(Palette palette)
          Returns if the argument palette is the Palm system grayscale palette with 16 entries.
static boolean PalmCodec.isPalmSystemPaletteColor16(Palette palette)
          Returns if the argument palette is the Palm system color palette with 16 entries.
static boolean PalmCodec.isPalmSystemPalette256(Palette palette)
          Returns if the argument palette is the Palm system palette with 256 colors.
 

Uses of Palette in net.sourceforge.jiu.codecs.tiff
 

Methods in net.sourceforge.jiu.codecs.tiff that return Palette
 Palette TIFFImageFileDirectory.getPalette()
           
 

Uses of Palette in net.sourceforge.jiu.color
 

Methods in net.sourceforge.jiu.color that return Palette
static Palette WebsafePaletteCreator.create()
          Creates a new palette with the 216 websafe colors.
 

Uses of Palette in net.sourceforge.jiu.color.io
 

Methods in net.sourceforge.jiu.color.io that return Palette
static Palette PaletteSerialization.convertImageToPalette(RGB24Image image)
          Create a palette from the pixels of the argument image.
static Palette PaletteSerialization.load(File paletteFile)
          Loads a palette from the argument file.
 

Methods in net.sourceforge.jiu.color.io with parameters of type Palette
static RGB24Image PaletteSerialization.convertPaletteToImage(Palette palette)
          Creates an RGB24Image from the palette entries, each entry becomes a pixel in an image of width 1 and height palette.getNumEntries().
static void PaletteSerialization.save(Palette palette, File paletteFile)
          Saves the palette to the given file as a PPM image file.
 

Uses of Palette in net.sourceforge.jiu.color.quantization
 

Methods in net.sourceforge.jiu.color.quantization that return Palette
 Palette UniformPaletteQuantizer.createPalette()
           
 Palette RGBQuantizer.createPalette()
          Return a Palette object with the list of colors to be used in the quantization process.
 Palette PopularityQuantizer.createPalette()
           
 Palette OctreeColorQuantizer.createPalette()
           
 Palette MedianCutQuantizer.createPalette()
          Creates a palette with the representative colors of all leaf nodes.
 Palette ArbitraryPaletteQuantizer.createPalette()
          Returns a copy of the palette that was given to the constructor of this class.
 

Constructors in net.sourceforge.jiu.color.quantization with parameters of type Palette
ArbitraryPaletteQuantizer(Palette palette)
          Creates a quantizer that will be able to map pixels (or a complete image) to the argument palette.
 

Uses of Palette in net.sourceforge.jiu.data
 

Methods in net.sourceforge.jiu.data that return Palette
 Palette PalettedImage.getPalette()
          Gets the palette of this image.
 Palette MemoryPaletted8Image.getPalette()
          Returns this image's palette.
 

Methods in net.sourceforge.jiu.data with parameters of type Palette
 void PalettedImage.setPalette(Palette palette)
          Sets the palette of this image to the argument palette object.
static void MemoryPaletted8Image.checkPalette(Palette palette)
           
 void MemoryPaletted8Image.setPalette(Palette palette)
          Sets this image's palette to a new value.
 

Constructors in net.sourceforge.jiu.data with parameters of type Palette
MemoryPaletted8Image(int width, int height, Palette palette)
           
 


JIU 0.12.0 Homepage

Copyright © 2000, 2001, 2002, 2003, 2004 Marco Schmidt