API Overview API Index Direct link to this page
JDK 1.6
  Package: java.awt.image
Author(s)
Since
JDK1.0
Version
Serial
Description
  Provides classes for creating and modifying images.
See also:   
AffineTransformOp View Source This class uses an affine transform to perform a linear mapping from 2D coordinates in the source image or Raster to 2D coordinates in the destination image or Raster.
AreaAveragingScaleFilter View Source An ImageFilter class for scaling images using a simple area averaging algorithm that produces smoother results than the nearest neighbor algorithm.
BandCombineOp View Source This class performs an arbitrary linear combination of the bands in a Raster, using a specified matrix.
BandedSampleModel View Source This class represents image data which is stored in a band interleaved fashion and for which each sample of a pixel occupies one data element of the DataBuffer.
BufferedImage View Source The BufferedImage subclass describes an Image with an accessible buffer of image data.
BufferedImageFilter View Source The BufferedImageFilter class subclasses an ImageFilter to provide a simple means of using a single-source/single-destination image operator (BufferedImageOp) to filter a BufferedImage in the Image Producer/Consumer/Observer paradigm.
BufferedImageOp View Source This interface describes single-input/single-output operations performed on BufferedImage objects.
BufferStrategy View Source The BufferStrategy class represents the mechanism with which to organize complex memory on a particular Canvas or Window.
ByteLookupTable View Source This class defines a lookup table object.
ColorConvertOp View Source This class performs a pixel-by-pixel color conversion of the data in the source image.
ColorModel View Source The ColorModel abstract class encapsulates the methods for translating a pixel value to color components (for example, red, green, and blue) and an alpha component.
ComponentColorModel View Source A ColorModel class that works with pixel values that represent color and alpha information as separate samples and that store each sample in a separate data element.
ComponentSampleModel View Source This class represents image data which is stored such that each sample of a pixel occupies one data element of the DataBuffer.
ConvolveOp View Source This class implements a convolution from the source to the destination.
CropImageFilter View Source An ImageFilter class for cropping images.
DataBuffer View Source This class exists to wrap one or more data arrays.
DataBufferByte View Source This class extends DataBuffer and stores data internally as bytes.
DataBufferDouble View Source This class extends DataBuffer and stores data internally in double form.
DataBufferFloat View Source This class extends DataBuffer and stores data internally in float form.
DataBufferInt View Source This class extends DataBuffer and stores data internally as integers.
DataBufferShort View Source This class extends DataBuffer and stores data internally as shorts.
DataBufferUShort View Source This class extends DataBuffer and stores data internally as shorts.
DirectColorModel View Source The DirectColorModel class is a ColorModel class that works with pixel values that represent RGB color and alpha information as separate samples and that pack all samples for a single pixel into a single int, short, or byte quantity.
FilteredImageSource View Source This class is an implementation of the ImageProducer interface which takes an existing image and a filter object and uses them to produce image data for a new filtered version of the original image.
ImageConsumer View Source The interface for objects expressing interest in image data through the ImageProducer interfaces.
ImageFilter View Source This class implements a filter for the set of interface methods that are used to deliver data from an ImageProducer to an ImageConsumer.
ImageObserver View Source An asynchronous update interface for receiving notifications about Image information as the Image is constructed.
ImageProducer View Source The interface for objects which can produce the image data for Images.
ImagingOpException View Source The ImagingOpException is thrown if one of the BufferedImageOp or RasterOp filter methods cannot process the image.
IndexColorModel View Source The IndexColorModel class is a ColorModel class that works with pixel values consisting of a single sample that is an index into a fixed colormap in the default sRGB color space.
Kernel View Source The Kernel class defines a matrix that describes how a specified pixel and its surrounding pixels affect the value computed for the pixel's position in the output image of a filtering operation.
LookupOp View Source This class implements a lookup operation from the source to the destination.
LookupTable View Source This abstract class defines a lookup table object.
MemoryImageSource View Source This class is an implementation of the ImageProducer interface which uses an array to produce pixel values for an Image.
MultiPixelPackedSampleModel View Source The MultiPixelPackedSampleModel class represents one-banded images and can pack multiple one-sample pixels into one data element.
PackedColorModel View Source The PackedColorModel class is an abstract ColorModel class that works with pixel values which represent color and alpha information as separate samples and which pack all samples for a single pixel into a single int, short, or byte quantity.
PixelGrabber View Source The PixelGrabber class implements an ImageConsumer which can be attached to an Image or ImageProducer object to retrieve a subset of the pixels in that image.
PixelInterleavedSampleModel View Source This class represents image data which is stored in a pixel interleaved fashion and for which each sample of a pixel occupies one data element of the DataBuffer.
Raster View Source A class representing a rectangular array of pixels.
RasterFormatException View Source The RasterFormatException is thrown if there is invalid layout information in the Raster.
RasterOp View Source This interface describes single-input/single-output operations performed on Raster objects.
RenderedImage View Source RenderedImage is a common interface for objects which contain or can produce image data in the form of Rasters.
ReplicateScaleFilter View Source An ImageFilter class for scaling images using the simplest algorithm.
RescaleOp View Source This class performs a pixel-by-pixel rescaling of the data in the source image by multiplying the sample values for each pixel by a scale factor and then adding an offset.
RGBImageFilter View Source This class provides an easy way to create an ImageFilter which modifies the pixels of an image in the default RGB ColorModel.
SampleModel View Source This abstract class defines an interface for extracting samples of pixels in an image.
ShortLookupTable View Source This class defines a lookup table object.
SinglePixelPackedSampleModel View Source This class represents pixel data packed such that the N samples which make up a single pixel are stored in a single data array element, and each data data array element holds samples for only one pixel.
TileObserver View Source An interface for objects that wish to be informed when tiles of a WritableRenderedImage become modifiable by some writer via a call to getWritableTile, and when they become unmodifiable via the last call to releaseWritableTile.
VolatileImage View Source VolatileImage is an image which can lose its contents at any time due to circumstances beyond the control of the application (e.g., situations caused by the operating system or by other applications).
WritableRaster View Source This class extends Raster to provide pixel writing capabilities.
WritableRenderedImage View Source WriteableRenderedImage is a common interface for objects which contain or can produce image data in the form of Rasters and which can be modified and/or written over.
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar