BufferedImage | 
IndexColorModel.convertToIntDiscrete(Raster raster,
                    boolean forceARGB) | 
 Returns a new BufferedImage of TYPE_INT_ARGB or
 TYPE_INT_RGB that has a Raster with pixel data
 computed by expanding the indices in the source Raster
 using the color/alpha component arrays of this ColorModel. 
 | 
WritableRaster | 
AffineTransformOp.createCompatibleDestRaster(Raster src) | 
 Creates a zeroed destination Raster with the correct size
 and number of bands. 
 | 
WritableRaster | 
BandCombineOp.createCompatibleDestRaster(Raster src) | 
 Creates a zeroed destination Raster with the correct size
 and number of bands. 
 | 
WritableRaster | 
ColorConvertOp.createCompatibleDestRaster(Raster src) | 
 Creates a zeroed destination Raster with the correct size and number of
 bands, given this source. 
 | 
WritableRaster | 
ConvolveOp.createCompatibleDestRaster(Raster src) | 
 Creates a zeroed destination Raster with the correct size and number
 of bands, given this source. 
 | 
WritableRaster | 
LookupOp.createCompatibleDestRaster(Raster src) | 
 Creates a zeroed-destination Raster with the
 correct size and number of bands, given this source. 
 | 
WritableRaster | 
RasterOp.createCompatibleDestRaster(Raster src) | 
 Creates a zeroed destination Raster with the correct size and number of
 bands. 
 | 
WritableRaster | 
RescaleOp.createCompatibleDestRaster(Raster src) | 
 Creates a zeroed-destination Raster with the correct
 size and number of bands, given this source. 
 | 
WritableRaster | 
AffineTransformOp.filter(Raster src,
      WritableRaster dst) | 
 Transforms the source Raster and stores the results in
 the destination Raster. 
 | 
WritableRaster | 
BandCombineOp.filter(Raster src,
      WritableRaster dst) | 
 Transforms the Raster using the matrix specified in the
 constructor. 
 | 
WritableRaster | 
ColorConvertOp.filter(Raster src,
      WritableRaster dest) | 
 ColorConverts the image data in the source Raster. 
 | 
WritableRaster | 
ConvolveOp.filter(Raster src,
      WritableRaster dst) | 
 Performs a convolution on Rasters. 
 | 
WritableRaster | 
LookupOp.filter(Raster src,
      WritableRaster dst) | 
 Performs a lookup operation on a Raster. 
 | 
WritableRaster | 
RasterOp.filter(Raster src,
      WritableRaster dest) | 
 Performs a single-input/single-output operation from a source Raster
 to a destination Raster. 
 | 
WritableRaster | 
RescaleOp.filter(Raster src,
      WritableRaster dst) | 
 Rescales the pixel data in the source Raster. 
 | 
Rectangle2D | 
AffineTransformOp.getBounds2D(Raster src) | 
 Returns the bounding box of the transformed destination. 
 | 
Rectangle2D | 
BandCombineOp.getBounds2D(Raster src) | 
 Returns the bounding box of the transformed destination. 
 | 
Rectangle2D | 
ColorConvertOp.getBounds2D(Raster src) | 
 Returns the bounding box of the destination, given this source. 
 | 
Rectangle2D | 
ConvolveOp.getBounds2D(Raster src) | 
 Returns the bounding box of the filtered destination Raster. 
 | 
Rectangle2D | 
LookupOp.getBounds2D(Raster src) | 
 Returns the bounding box of the filtered destination Raster. 
 | 
Rectangle2D | 
RasterOp.getBounds2D(Raster src) | 
 Returns the bounding box of the filtered destination Raster. 
 | 
Rectangle2D | 
RescaleOp.getBounds2D(Raster src) | 
 Returns the bounding box of the rescaled destination Raster. 
 | 
boolean | 
ColorModel.isCompatibleRaster(Raster raster) | 
 Returns true if raster is compatible
 with this ColorModel and false if it is
 not. 
 | 
boolean | 
ComponentColorModel.isCompatibleRaster(Raster raster) | 
 Returns true if raster is compatible with this
 ColorModel; false if it is not. 
 | 
boolean | 
DirectColorModel.isCompatibleRaster(Raster raster) | 
 Returns true if raster is compatible
 with this ColorModel and false if it is
 not. 
 | 
boolean | 
IndexColorModel.isCompatibleRaster(Raster raster) | 
 Returns true if raster is compatible
 with this ColorModel or false if it
 is not compatible with this ColorModel. 
 | 
void | 
BufferedImage.setData(Raster r) | 
 Sets a rectangular region of the image to the contents of the
 specified Raster r, which is
 assumed to be in the same coordinate space as the
 BufferedImage. 
 | 
void | 
WritableRenderedImage.setData(Raster r) | 
 Sets a rect of the image to the contents of the Raster r, which is
 assumed to be in the same coordinate space as the WritableRenderedImage. 
 | 
void | 
WritableRaster.setDataElements(int x,
               int y,
               Raster inRaster) | 
 Sets the data for a rectangle of pixels from an input Raster. 
 | 
void | 
WritableRaster.setRect(int dx,
       int dy,
       Raster srcRaster) | 
 Copies pixels from Raster srcRaster to this WritableRaster. 
 | 
void | 
WritableRaster.setRect(Raster srcRaster) | 
 Copies pixels from Raster srcRaster to this WritableRaster. 
 |