Provides classes for creating and modifying images.
See: Description
Interface | Description |
---|---|
BufferedImageOp | This interface describes single-input/single-output operations performed on |
ImageConsumer | The interface for objects expressing interest in image data through the ImageProducer interfaces. |
ImageObserver | An asynchronous update interface for receiving notifications about Image information as the Image is constructed. |
ImageProducer | The interface for objects which can produce the image data for Images. |
RasterOp | This interface describes single-input/single-output operations performed on Raster objects. |
RenderedImage | RenderedImage is a common interface for objects which contain or can produce image data in the form of Rasters. |
TileObserver | 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. |
WritableRenderedImage | 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. |
Class | Description |
---|---|
AffineTransformOp | This class uses an affine transform to perform a linear mapping from 2D coordinates in the source image or |
AreaAveragingScaleFilter | An ImageFilter class for scaling images using a simple area averaging algorithm that produces smoother results than the nearest neighbor algorithm. |
BandCombineOp | This class performs an arbitrary linear combination of the bands in a |
BandedSampleModel | 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 | The |
BufferedImageFilter | The |
BufferStrategy | The |
ByteLookupTable | This class defines a lookup table object. |
ColorConvertOp | This class performs a pixel-by-pixel color conversion of the data in the source image. |
ColorModel | The |
ComponentColorModel | A |
ComponentSampleModel | This class represents image data which is stored such that each sample of a pixel occupies one data element of the DataBuffer. |
ConvolveOp | This class implements a convolution from the source to the destination. |
CropImageFilter | An ImageFilter class for cropping images. |
DataBuffer | This class exists to wrap one or more data arrays. |
DataBufferByte | This class extends |
DataBufferDouble | This class extends |
DataBufferFloat | This class extends |
DataBufferInt | This class extends |
DataBufferShort | This class extends |
DataBufferUShort | This class extends |
DirectColorModel | The |
FilteredImageSource | 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. |
ImageFilter | This class implements a filter for the set of interface methods that are used to deliver data from an ImageProducer to an ImageConsumer. |
IndexColorModel | The |
Kernel | The |
LookupOp | This class implements a lookup operation from the source to the destination. |
LookupTable | This abstract class defines a lookup table object. |
MemoryImageSource | This class is an implementation of the ImageProducer interface which uses an array to produce pixel values for an Image. |
MultiPixelPackedSampleModel | The |
PackedColorModel | The |
PixelGrabber | 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 | 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 | A class representing a rectangular array of pixels. |
ReplicateScaleFilter | An ImageFilter class for scaling images using the simplest algorithm. |
RescaleOp | 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 | This class provides an easy way to create an ImageFilter which modifies the pixels of an image in the default RGB ColorModel. |
SampleModel | This abstract class defines an interface for extracting samples of pixels in an image. |
ShortLookupTable | This class defines a lookup table object. |
SinglePixelPackedSampleModel | 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. |
VolatileImage | 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 | This class extends Raster to provide pixel writing capabilities. |
Exception | Description |
---|---|
ImagingOpException | The |
RasterFormatException | The |
Provides classes for creating and modifying images. Images are processed using a streaming framework that involves an image producer, optional image filters, and an image consumer. This framework makes it possible to progressively render an image while it is being fetched and generated. Moreover, the framework allows an application to discard the storage used by an image and to regenerate it at any time. This package provides a number of image producers, consumers, and filters that you can configure for your image processing needs.
© 1993–2017, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.