java.awt.image |
|
Java Source File Name | Type | Comment |
AreaAveragingScaleFilter.java | Class | An ImageFilter class for scaling images using a simple area averaging
algorithm that produces smoother results than the nearest neighbor
algorithm.
This class extends the basic ImageFilter Class to scale an existing
image and provide a source for a new image containing the resampled
image. |
BufferedImage.java | Class | The BufferedImage subclass describes an
Image with
an accessible buffer of image data.
A BufferedImage is comprised of a
ColorModel and a
Raster of image data.
The number and types of bands in the
SampleModel of the
Raster must match the number and types required by the
ColorModel to represent its color and alpha components.
All BufferedImage objects have an upper left corner
coordinate of (0, 0). |
ColorModel.java | Class | A class that encapsulates the methods for translating from pixel values
to alpha, red, green, and blue color components for an image. |
CropImageFilter.java | Class | An ImageFilter class for cropping images.
This class extends the basic ImageFilter Class to extract a given
rectangular region of an existing Image and provide a source for a
new image containing just the extracted region. |
DataBuffer.java | Class | |
DirectColorModel.java | Class | A ColorModel class that specifies a translation from pixel values
to alpha, red, green, and blue color components for pixels which
have the color components embedded directly in the bits of the
pixel itself. |
FilteredImageSource.java | Class | 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.java | Interface | The interface for objects expressing interest in image data through
the ImageProducer interfaces. |
ImageFilter.java | Class | This class implements a filter for the set of interface methods that
are used to deliver data from an ImageProducer to an ImageConsumer.
It is meant to be used in conjunction with a FilteredImageSource
object to produce filtered versions of existing images. |
ImageObserver.java | Interface | An asynchronous update interface for receiving notifications about
Image information as the Image is constructed. |
ImageProducer.java | Interface | The interface for objects which can produce the image data for Images. |
IndexColorModel.java | Class | 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. |
MemoryImageSource.java | Class | This class is an implementation of the ImageProducer interface which
uses an array to produce pixel values for an Image. |
PixelGrabber.java | Class | 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. |
RasterFormatException.java | Class | The RasterFormatException is thrown if there is
invalid layout information in the
Raster . |
ReplicateScaleFilter.java | Class | An ImageFilter class for scaling images using the simplest algorithm.
This class extends the basic ImageFilter Class to scale an existing
image and provide a source for a new image containing the resampled
image. |
RGBImageFilter.java | Class | This class provides an easy way to create an ImageFilter which modifies
the pixels of an image in the default RGB ColorModel. |
VolatileImage.java | Class | 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). |