JSR-209 (Final Release)

Package java.awt.image

Provides classes for creating and modifying images.

See:
          Description

Interface Summary
BufferedImageOp This interface describes single-input/single-output operations performed on BufferedImage objects.
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.
 

Class Summary
AffineTransformOp 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.
BufferedImage The BufferedImage subclass describes an Image with an accessible buffer of image data.
ConvolveOp This class implements a convolution from the source to the destination.
DataBuffer This class exists to wrap one or more data arrays.
DataBufferInt This class extends DataBuffer and stores data internally as integers.
Kernel 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 This class implements a lookup operation from the source to the destination.
LookupTable This abstract class defines a lookup table object.
Raster A class representing a rectangular array of pixels.
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.
SampleModel This abstract class defines an interface for extracting samples of pixels in an image.
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.
WritableRaster This class extends Raster to provide pixel writing capabilities.
 

Exception Summary
ImagingOpException The ImagingOpException is thrown if one of the BufferedImageOp or RasterOp filter methods cannot process the image.
 

Package java.awt.image Description

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.

Since:
JDK1.0

JSR-209 (Final Release)

Java and Java 2D are trademarks or registered trademarks of Sun Microsystems, Inc. in the U.S. and other countries.
Copyright 1993 - 2006 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A. All Rights Reserved.
Use of this specification is subject to this license.