Java Platform 1.2
Beta 4

Uses of Class
java.awt.image.BufferedImage

Packages that use BufferedImage
com.sun.image.codec.jpeg Provides classes for encoding and decoding JPEG images.  
java.awt Contains all of the classes for creating user interfaces and for painting graphics and images.  
java.awt.image Provides classes for creating and modifying images.  
 

Uses of BufferedImage in com.sun.image.codec.jpeg
 

Methods in com.sun.image.codec.jpeg that return BufferedImage
 BufferedImage JPEGImageDecoder.decodeAsBufferedImage()
          Decodes the current JPEG data stream.
 BufferedImage TruncatedFileException.getBufferedImage()
          Allows access to the BufferedImage that was in the progress of being decoded, this may be null, it is likely to be only partially filled with image data.
 

Methods in com.sun.image.codec.jpeg with parameters of type BufferedImage
 JPEGEncodeParam JPEGImageEncoder.getDefaultJPEGEncodeParam(BufferedImage bi)
          This is a factory method for creating JPEGEncodeParam objects.
 void JPEGImageEncoder.encode(BufferedImage bi)
          Encode a BufferedImage as a JPEG data stream.
 void JPEGImageEncoder.encode(BufferedImage bi, JPEGEncodeParam jep)
          Encode a BufferedImage as a JPEG data stream.
static JPEGEncodeParam JPEGCodec.getDefaultJPEGEncodeParam(BufferedImage bi)
          This is a factory method for creating JPEGEncodeParam objects.
 

Constructors in com.sun.image.codec.jpeg with parameters of type BufferedImage
TruncatedFileException.TruncatedFileException(BufferedImage bi)
          Constructs a TruncatedFileException/code> with the partially decoded BufferedImage.
 

Uses of BufferedImage in java.awt
 

Methods in java.awt that return BufferedImage
abstract  BufferedImage GraphicsConfiguration.createCompatibleImage(int width, int height)
          Returns a BufferedImage with data layout and color model compatible with this graphics configuration.
abstract  BufferedImage GraphicsConfiguration.createCompatibleImage(int width, int height, int transparency)
          Returns a BufferedImage that supports the specified transparency and has data layout and color model compatible with this graphics configuration.
 

Methods in java.awt with parameters of type BufferedImage
abstract  Graphics2D GraphicsEnvironment.createGraphics(BufferedImage img)
          Returns a Graphics2D object for rendering into the given BufferedImage.
abstract  void Graphics2D.drawImage(BufferedImage img, BufferedImageOp op, int x, int y)
          Draws a BufferedImage that is filtered with a BufferedImageOp.
 

Constructors in java.awt with parameters of type BufferedImage
TexturePaint.TexturePaint(BufferedImage txtr, Rectangle2D rect2d)
          Constructs a TexturePaint object.
 

Uses of BufferedImage in java.awt.image
 

Methods in java.awt.image that return BufferedImage
 BufferedImage BufferedImageOp.filter(BufferedImage src, BufferedImage dest)
          Performs a single-input/single-output operation on a BufferedImage.
 BufferedImage BufferedImageOp.createCompatibleDestImage(BufferedImage src, ColorModel destCM)
          Creates a zeroed destination image with the correct size and number of bands.
 BufferedImage LookupOp.filter(BufferedImage src, BufferedImage dst)
          Performs a lookup operation on a BufferedImage.
 BufferedImage LookupOp.createCompatibleDestImage(BufferedImage src, ColorModel destCM)
          Creates a zeroed destination image with the correct size and number of bands.
 BufferedImage RescaleOp.filter(BufferedImage src, BufferedImage dst)
          Rescales the source BufferedImage.
 BufferedImage RescaleOp.createCompatibleDestImage(BufferedImage src, ColorModel destCM)
          Creates a zeroed destination image with the correct size and number of bands.
 BufferedImage ColorConvertOp.filter(BufferedImage src, BufferedImage dest)
          ColorConverts the source BufferedImage.
 BufferedImage ColorConvertOp.createCompatibleDestImage(BufferedImage src, ColorModel destCM)
          Creates a zeroed destination image with the correct size and number of bands, given this source.
 BufferedImage BufferedImage.getSubimage(int x, int y, int w, int h)
          Returns a subimage given a rectangular region.
 BufferedImage ConvolveOp.filter(BufferedImage src, BufferedImage dst)
          Performs a convolution on BufferedImages.
 BufferedImage ConvolveOp.createCompatibleDestImage(BufferedImage src, ColorModel destCM)
          Creates a zeroed destination image with the correct size and number of bands.
 BufferedImage IndexColorModel.convertToIntDiscrete(Raster raster, boolean forceARGB)
          Returns a new BufferedImage of TYPE_INT_ARGB or TYPE_INT_RGB which has a Raster with pixel data computed by expanding the indices in the source Raster using the color/alpha component arrays of this ColorModel.
 BufferedImage AffineTransformOp.filter(BufferedImage src, BufferedImage dst)
          Transforms the source BufferedImage and stores the results in the destination BufferedImage.
 BufferedImage AffineTransformOp.createCompatibleDestImage(BufferedImage src, ColorModel destCM)
          Creates a zeroed destination image with the correct size and number of bands.
 

Methods in java.awt.image with parameters of type BufferedImage
 BufferedImage BufferedImageOp.filter(BufferedImage src, BufferedImage dest)
          Performs a single-input/single-output operation on a BufferedImage.
 Rectangle2D BufferedImageOp.getBounds2D(BufferedImage src)
          Returns the bounding box of the filtered destination image.
 BufferedImage BufferedImageOp.createCompatibleDestImage(BufferedImage src, ColorModel destCM)
          Creates a zeroed destination image with the correct size and number of bands.
 BufferedImage LookupOp.filter(BufferedImage src, BufferedImage dst)
          Performs a lookup operation on a BufferedImage.
 Rectangle2D LookupOp.getBounds2D(BufferedImage src)
          Returns the bounding box of the filtered destination image.
 BufferedImage LookupOp.createCompatibleDestImage(BufferedImage src, ColorModel destCM)
          Creates a zeroed destination image with the correct size and number of bands.
 BufferedImage RescaleOp.filter(BufferedImage src, BufferedImage dst)
          Rescales the source BufferedImage.
 Rectangle2D RescaleOp.getBounds2D(BufferedImage src)
          Returns the bounding box of the rescaled destination image.
 BufferedImage RescaleOp.createCompatibleDestImage(BufferedImage src, ColorModel destCM)
          Creates a zeroed destination image with the correct size and number of bands.
 BufferedImage ColorConvertOp.filter(BufferedImage src, BufferedImage dest)
          ColorConverts the source BufferedImage.
 Rectangle2D ColorConvertOp.getBounds2D(BufferedImage src)
          Returns the bounding box of the destination, given this source.
 BufferedImage ColorConvertOp.createCompatibleDestImage(BufferedImage src, ColorModel destCM)
          Creates a zeroed destination image with the correct size and number of bands, given this source.
 BufferedImage ConvolveOp.filter(BufferedImage src, BufferedImage dst)
          Performs a convolution on BufferedImages.
 BufferedImage ConvolveOp.createCompatibleDestImage(BufferedImage src, ColorModel destCM)
          Creates a zeroed destination image with the correct size and number of bands.
 Rectangle2D ConvolveOp.getBounds2D(BufferedImage src)
          Returns the bounding box of the filtered destination image.
 BufferedImage AffineTransformOp.filter(BufferedImage src, BufferedImage dst)
          Transforms the source BufferedImage and stores the results in the destination BufferedImage.
 Rectangle2D AffineTransformOp.getBounds2D(BufferedImage src)
          Returns the bounding box of the transformed destination.
 BufferedImage AffineTransformOp.createCompatibleDestImage(BufferedImage src, ColorModel destCM)
          Creates a zeroed destination image with the correct size and number of bands.
 


Java Platform 1.2
Beta 4

Submit a bug or feature
Submit comments/suggestions about new javadoc look
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1998 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.
This documentation was generated with a post-Beta4 version of Javadoc.