Chapter 16

The AWT Image Package

by Debasis Samanta


CONTENETS

Introduction

The java.awt.image Package contains classes and interfaces for performing sophisticated image processing. The classes in this package provides for managaing image data, color models, cropping, color filtering, setting pixel values, and grabbing snapshots. The various component in this package is listed below :

	
	Classes
		  Class ColorModel 
		  Class CropImageFilter 
		  Class DirectColorModel 
		  Class FilteredImageSource 
		  Class ImageFilter 
		  Class IndexColorModel 
		  Class MemoryImageSource 
		  Class PixelGrabber 
		  Class RGBImageFilter 

	Interfaces
		  Interface ImageConsumer 
		  Interface ImageObserver 
		  Interface ImageProducer

Class ColorModel

This abstract class is the superclass for all classes that encapsulate methods for translating from pixel values to their alpha (transparency), red, green, and blue components. The java.awt.image classes IndexColorModel and DirectColorModel are subclasses of this class.

	
	public  abstract  class  java.awt.image.ColorModel extends  java.lang.Object   
	{
        	// 	Member elements
    	protected int pixel_bits;	
		//	The number of bits per pixel.

        	// 	Constructors
    	public ColorModel(int  bits);	
		//	Constructs a ColorModel which describes a pixel with the specified number of bits. 

        	// 	Methods
    	public abstract int getAlpha(int  pixel);	 
    	public abstract int getBlue(int  pixel);	 
    	public abstract int getGreen(int  pixel);	 
    	public int getPixelSize(); 
    	public abstract int getRed(int  pixel);	 
    	public int getRGB(int  pixel);	 
    	public static ColorModel getRGBdefault();	 
	}

Table 5.1

Methods

Description

getAlpha(int pixel)

Determines the alpha transparency of a pixel in this color model. The value ranges from 0 to 255. The value 0 indicates that the pixel is completely transparent. The value 255 indicates that the pixel is opaque.

getBlue(int pixel)

Determines the blue component of a pixel in this color model. The value ranges from 0 to 255. The value 0 indicates no contribution from this primary color. The value 255 indicates the maximum intensity of this color component

Returns: the blue color component represented by the pixel value.

getGreen(int pixel)

Determines the green component of a pixel in this color model. The value ranges from 0 to 255. The value 0 indicates no contribution from this primary color. The value 255 indicates the maximum intensity of this color component.

Returns: The green color component ranging from 0 to 255.

getPixelSize()

Returns: the number of bits per pixel in this color model.

getRed(int pixel)

Determines the red component of a pixel in this color model. The value ranges from 0 to 255. The value 0 indicates no contribution from this primary color. The value 255 indicates the maximum intensity of this color component.

Returns: the red color component ranging from 0 to 255.

Table 5.1 (contd.) 

getRGB(int pixel)

Calculates a single integer representing the alpha, red, green, and blue components of a pixel in this color model. The components are each scaled to be a value between 0 and 255 . The integer returned is the number such that bits 24-31 are the alpha value, 16-23 are the red value, bits 8-15 are the green value, and bits 0-7 are the blue value.105

Returns: an integer representing this color in RGB format.

getRGBdefault()

Returns the default Abstract Window Toolkit color model. The Abstract Window Toolkit represents each pixel as a 32-bit integer. Bits 24-31 are the alpha transparency, bits 16-23 are the red value, bits 8- 15 are the green value, and bits 0-7 are the blue value.

This method returns a ColorModel object which describes that pixel format and can be used to extract alpha, red, green, and blue values from such color values.

Class CropImageFilter

The cropped image filter is an image filter for cropping images. This class extends the basic ImageFilter class to extract a given rectangular region of an existing image and provides a source for new image containing only the extracted region.

This class is meant to be used in conjunction with a FilteredImageSource to produce cropped versions of existing images.

	public  class  java.awt.image.CropImageFilter extends  java.awt.image.ImageFilter
	{
        	// 	Constructors
    	public CropImageFilter(int  x, int  y, int  w, int h);
		/*	Constructs a cropped image filter that extracts the absolute rectangular region of pixels from its source Image as specified by the x, y, w, and h parameters. 	 
		*/
        	// 	Methods
    	public void setDimensions(int  w, int  h); 
    	public void setPixels(int  x, int  y, int  w, int  h, ColorModel  model,byte  pixels[], int  off, int  scansize);
    	  	public void setProperties(Hashtable  props); 
	}
		Methods are stated in Table 5.2.

Table 5.2 

Methods

Description

setDimensions(int w, int h)

The image producer calls the setDimensions of the image consumer to tell it the width and height of the image. The setDimensions method of CroppedImageFilter ignores its arguments. It calls the setDimensions method of its image consumer with the width and height arguments of the constructor106106.

setPixels(....)

The image producer calls the setPixels method of the image consumer one or more times to deliver the pixels of the image. The setPixels method of CroppedImageFilter determines if the specified rectangle intersects its cropping region. If so, it calls the setPixels method after modifying the x, y, w, h, and offset arguments to reflect only the intersecting region.

setProperties(Hashtable props)

The image producer calls the setProperties method of the image consumer to let it know of additional properties of the image. The setProperties method of CroppedImageFilter adds the property "croprect" with the value = new Rectangle(x, y, width, height)
to the table of properties, and then calls the
setProperties method of its image consumer with the modified properties table.

Class DirectColorModel

The DirectColorModel is a color model which specifies a translation from pixel values to alpha, red, green, and blue components using the actual bits of the pixel value.

Many of the methods in this class are final : the underlying native graphics code makes assumptions about the layout and operation of this class and those assumptions are reflected in the implementations of the methods here that are marked final. Applications can subclass this class for other reaons, but they cannot override or modify the behavior of the final methods.

	public  class  java.awt.image.DirectColorModel extends  java.awt.image.ColorModel  
	{
			// 	Constructors
		public DirectColorModel(int  bits, int  rmask, int gmask, int  bmask);
		/*	Constructs a direct color model in which each of the given masks specify which bits in the pixels contain the red, green, and blue components. 
			Pixels described by this color model all have alpha components of 255, indicating that they are fully opaque. 
		*/
		public DirectColorModel(int  bits, int  rmask, int gmask, int  bmask,int  amask);
		/*	Constructs a direct color model in which each of the given masks specify which bits in the pixels contain the alpha, red, green, and blue components. 		*/

			// 	Methods
		public final int getAlpha(int  pixel);	 
		public final int getAlphaMask();
		public final int getBlue(int  pixel); 
		public final int getBlueMask();	 
		public final int getGreen(int  pixel);	 
		public final int getGreenMask();	 
		public final int getRed(int  pixel); 
		public final int getRedMask();	 
		public final int getRGB(int  pixel); 
	}

	Methods are stated in Table 5.3.		

Table 5.3

Methods

Description

getAlpha(int pixel)

Determines the alpha transparency of a pixel in this color model. The value ranges from 0 to 255. The value 0 indicates that the pixel is completely transparent. The value 255 indicates that the pixel is opaque.

Returns: the alpha transparency represented by the pixel value.

getAlphaMask()

Returns: a mask indicating which bits in a pixel contain the alpha transparency component in this color model.

getBlue(int pixel)

Determines the blue component of a pixel in this color model. The value ranges from 0 to 255. The value 0 indicates no contribution from this primary color. The value 255 indicates the maximum intensity of this color component.

Returns: the blue color component represented by the pixel value.

getBlueMask()

Returns: a mask indicating which bits in a pixel contain the blue color component in this color model.

getGreen(int pixel)

Determines the green component of a pixel in this color model. The value ranges from 0 to 255. The value 0 indicates no contribution from this primary color. The value 255 indicates the maximum intensity of this color component.

Returns: the blue color component represented by the pixel value.

getGreenMask()

Returns: a mask indicating which bits in a pixel contain the green color component in this color model.

getRed(int pixel)

Determines the red component of a pixel in this color model. The value ranges from 0 to 255. The value 0 indicates no contribution from this primary color. The value 255 indicates the maximum intensity of this color component.

Returns: the red color component represented by the pixel value.

getRedMask()

Returns: a mask indicating which bits in a pixel contain the red color component in this color model.

getRGB(int pixel)

Calculates a single integer representing the alpha, red, green, and blue components of the pixel in this color model. The components are each scaled to be a value between 0 and 255. The integer returned is the number such that bits 24-31 are the alpha value, 16-23 are the red value, bits 8-15 are the green value, and bits 0-7 are the blue value. This format is the pixel format of the default RGB colormodel.

Returns: an integer representing this color in RGB format.

Class FilteredImageSource

A FilteredImagedSource is an implementation of the image producer interface which takes an existing image and an image filter and uses them to produce a new filtered version of the original image.

	
	public  class  java.awt.image.FilteredImageSource extends  java.lang.Object   
    implements java.awt.image.ImageProducer   
	{
        	// 	Constructors
    	public FilteredImageSource(ImageProducer  orig, ImageFilter  imgf);
		//	Constructs a new image producer from an existing image producer and an an image filter.

        	// 	Methods
    	public void addConsumer(ImageConsumer  ic); 
    	public boolean isConsumer(ImageConsumer  ic);	 
    	public void removeConsumer(ImageConsumer  ic); 
    	public void requestTopDownLeftRightResend(ImageConsumer  ic);
    	public void startProduction(ImageConsumer  ic);	 
	}

	Methods are stated in Table 5.4

Table 5.4

Methods

Description

addConsumer(ImageConsumer ic)

Registers the image consumer argument as wanting th image produced by this image producer. The addConsumer method of FilteredImageSource calls its image filter's getFilterInstance method to creates a new filter instance for the image consumer argument. The resulting filter instance is then passed as an argument to the image producer's addConsumer method.

isConsumer(ImageConsumer ic)

Returns: true if the specified image consumer argument is currently registered with this image producer as one of its consumers; false otherwise.

removeConsumer(ImageConsumer ic)

Removes the specified image consumer object from the list of consumers registered to receive the image data from this image producer. The removeConsumer method of FilteredImageSource calls its image producer's removeConsumer method with the image filter than was created when this image consumer was first registered.

requestTopDownLeftRightResend( ...)

An image consumer sends this message to request that the image producer attempt to resend the image data one more time in top-down, left-to-right order. 109This method of FilteredImageSource calls its image producer's requestTopDownLeftRightResent method with the image filter than was created when this image consumer was first registered.

startProduction(ImageConsumer ic)

Registers the image consumer argument as wanting the image produced by this image producer. In addition, this method forces the image producer to start an immediate reconstruction of the image data. The startProduction method of FilteredImageSource calls its image filter's getFilterInstance method to creates a new filter instance for the image consumer argument. The resulting filter instance is then passed as an argument to the image producer's startProduction method.

Class ImageFilter

This class is the superclass of all classes that are meant to filter the data delivered from an ImageProducer to an ImageConsumer. This class and its subclasses are meant to be used in conjunction with a FilteredImageSource object to produce filtered versions of existing images.

The image filter implemented by this class is the "null filter" which has no effect on the data passing through. Filters should subclass this class and override the methods in order to modify the data as necessary.

	public  class  java.awt.image.ImageFilter extends  java.lang.Object  
	implements java.awt.image.ImageConsumer  
				 java.lang.Cloneable  
	{
			// 	Member elements
		protected ImageConsumer consumer; 
		/*	The image consumer   of the particular image data stream for which this image filter is filtering data. The field is not initialized by the constructor, but by the call to the getFilterInstance method. when the FilteredImageSource   is creating a unique instance of this object for a particular image data stream.
		*/
			// 	Constructors
		public ImageFilter(); 
		//	The default constructor for this method.

			// 	Methods
		public Object clone();	 
		public ImageFilter getFilterInstance(ImageConsumer  ic)	 
		public void imageComplete(int  status);	 
		public void resendTopDownLeftRight(ImageProducer  ip);	 
		public void setColorModel(ColorModel  model);	 
		public void setDimensions(int  width, int  height);	 
		public void setHints(int  hints); 
		public void setPixels(int  x, int  y, int  w, int  h, ColorModel  model,byte  pixels[], int  off, int  scansize);
		public void setPixels(int  x, int  y, int  w, int  h, ColorModel  model,int  pixels[], int  off, int  scansize);
		public void setProperties(Hashtable  props);	 
	}

	Methods are described in Table 5.5.

Table 5.5

Methods

Description

clone()

Returns: a clone of this object. .

getFilterInstance(ImageConsumer ic)

Creates an image filter which filters the image for the specified image consumer. The getFilterInstance method of ImageFilter clones the object. and sets its consumer field to the image consumer argument. Subclasses can override this method, if they require more setup than this.

imageComplete(int status)

The image producer calls the imageComplete method when it has completed an image or it has encountered an error in producing or loading the image. This method of ImageFilter calls the imageComplete method of the image consumer with the identical argument.


resendTopDownLeftRight (ImageProducer ip)

An image consumer calls the resendTopDownLeftRight of its producer to request that the pixel data be resent in that order. An image filter can respond to this request in one of three ways:

The filter can forward this request to the image producer using itself as the requesting image consumer. This is the default behavior provided by the resendTopDownLeftRight method of ImageFilter.

The filter can resend the pixels in the right order on its own (presumably because the generated pixels have been saved in some sort of buffer).

The filter can ignore this request.

  1. setColorModel(ColorModel model)

The image producer calls the setColorModel method to specify the color model for the majority of the subsequent setPixels method calls.. The setColorModel method of ImageFilter calls the setColorModel method of the image consumer with the identical argument.

setDimensions(int width, int height)

The image producer calls the setDimensions of the image consumer to tell it the width and height of the image.ThesetDimensions method of ImageFilter calls the setDimensions method of its image consumer with the identical arguments.

setHints(int hints)

The image producer calls the setHints method of the image consumer to indicate the order in which the bits are to be delivered. The setHints method of ImageFilter calls the setHints method of its image consumer with the identical argument.

setPixels(..byte pixels[]..)

The image producer calls the setPixels method of the image consumer one or more times to deliver the pixels of the image. The setPixels method of ImageFilter calls the setPixels method of its image consumer with the identical arguments.

setPixels(..int pixels[],.)

The image producer calls the setPixels method of the image consumer one or more times to deliver the pixels of the image. The setPixels method of ImageFilter calls the setPixels method of its image consumer with the identical arguments.

setProperties(Hashtable props)

The setProperties method of ImageFilter calls the setProperties method of its image consumer with the properties argument after modifying it slightly:

If the hashtable already has no key "filters", a string representation of the current filter is added to the hashtable under the key "filter".

If such a key is already in the hashtable, a string representation of the current filter is appended to the property (which must be a String) already stored under that key, and stores this value back in the hashtable.

Class IndexColorModel

The index color model class specifies a color model in a which a pixel value is converted into alpha, red, green, and blue component by using the pixel value as an index into a color map. Each entry in the color map gives the alpha, red, green, and blue component for the corresponding pixel. An optional transparent pixel can be specified. This pixel is completely transparent, independent of the alpha value recorded for that pixel value. The maximum size of the color map is 256 entries. This color model is similar to an X11 PseudoColor visual..

Many of the methods in this class are final: the underlying native graphics code makes assumptions about the layout and operation of this class and those assumptions are reflected in the implementations of the methods here that are marked final. Applications can subclass this class for other reaons, but they cannot override or modify the behavior of the final methods.

	public  class  java.awt.image.IndexColorModel extends  java.awt.image.ColorModel  
	{
        	// 	Constructors
    	public IndexColorModel(int  bits, int  size, byte  r[], byte  g[],byte  b[]);
		/*	Constructs an IndexColorModel from the given arrays of red, green, and blue components. 
			Pixels described by this color model all have alpha components of 255 (fully opaque). 
			Each of the three arrays must have at least size elements, and it must be the case that size < 2bits . These first size elements of the arrays are the red, green, and blue values for pixels in the range 0 <= i < size . Pixels in the range size <= i <= 2bits  have red, green, and blue values of  0.
		*/
   	public IndexColorModel(int  bits, int  size, byte  r[], byte  g[],byte  b[], byte  a[]);
		//	Constructs an IndexColorModel from the given arrays of red, green, blue and alpha components.
   	public IndexColorModel(int  bits, int  size, byte  r[], byte  g[],byte  b[], int  trans);
		/*	Constructs an IndexColorModel from the given arrays of red, green, and blue components. Pixels described by this color model all have alpha components of 255 (fully opaque), except for the transparent pixel.
		*/
   	public IndexColorModel(int  bits, int  size, byte  cmap[],int  start,boolean  hasalpha);
		/*	Constructs an index color model from a single array of packed red, green, blue and optional alpha components. If the hasalpha argument is false, then the cmap array must have length of at least start + 3 x size. The red, green, and blue components for a pixel i in the range 0 <=  i < size are in the three elements of the cmap array starting at cmap[start + 3i] Its alpha component is 255 (fully opaque). If the hasalpha argument is true, then the cmap array must have length of at least start + 4 x size. The red, green, blue, and alpha components for a pixel i in the range   0 <=  i < size are in the four elements of the cmap array starting at cmap[start + 4i]. Pixels in the range  size <=i < 2bits have red, green, and blue values of 0, Their alpha component is 0 if hasalpha is true, and 255 otherwise.
		*/
   	public IndexColorModel(int  bits, int  size, byte  cmap[], int  start,boolean  hasalpha, int  trans);
		/*	Constructs an index color model from a single array of packed red, green, blue, and optional alpha values. 
			The color model is constructed the same way as described in  . In addition, the specified transparent index represents a pixel which is considered entirely transparent regardless of any alpha value specified for it. The array must have enough values in it to fill all of the needed component arrays of the specified size.
		*/
        	// 	Methods
		public final int getAlpha(int  pixel); 
		public final void getAlphas(byte  a[]);	 
		public final int getBlue(int  pixel);	 
		public final void getBlues(byte  b[]);	
		public final int getGreen(int  pixel); 
		public final void getGreens(byte  g[]);	 
		public final int getMapSize();	 
		public final int getRed(int  pixel);	 
		public final void getReds(byte  r[]); 
		public final int getRGB(int  pixel); 
		public final int getTransparentPixel();	 
	}
Methods are described in Table 5.6.

Table 5.6.

Methods

Description

getAlpha(int pixel)

Determines the alpha transparency value of the pixel in this color model. The value ranges from 0 to 255. The value 0 indicates that the pixel is completely transparent. The value 255 indicates that the pixel is opaque.

getAlphas(byte a[])

Copies the array of alpha transparency values from this color model into the given array. Only the initial entries of the array as specified by the getMapSize method are written.

getBlue(int pixel)

Determines the blue component of the pixel in this color model. The value ranges from 0 to 255. The value 0 indicates no contribution from this primary color. The value 255 indicates the maximum intensity of this color component.

Returns: the blue color component represented by the pixel value.

getBlues(byte b[])

Copies the array of blue color components from this color model into the given array. Only the initial entries of the array as specified by the getMapSize method are written.

getGreen(int pixel)

Determines the green component of the pixel in this color model. The value ranges from 0 to 255. The value 0 indicates no contribution from this primary color. The value 255 indicates the maximum intensity of this color component. Returns : the blue color component represented by the pixel value. .

getGreens(byte g[])

Copies the array of green color components from this color model into the given array.

Only the initial entries of the array as specified by the getMapSize method are written.

getMapSize()

Returns: the value of the size argument when creating this index color model.

getRed(int pixel)

Determines the red component of the pixel in this color model. The value ranges from 0 to 255. The value 0 indicates no contribution from this primary color. The value 255 indicates the maximum intensity of this color component.

Returns: the red color component represented by the pixel value.

getReds(byte r[])

Copies the array of red color components from this color model into the given array. Only the initial entries of the array as specified by the getMapSize method are written.

getRGB(int pixel)

Calculates a single integer representing the alpha, red, green, and blue components of the pixel in this color model. The components are each scaled to be a value between 0 and 255 . The integer returned is the number such that bits 24-31 are the alpha value, 16-23 are the red value, bits 8-15 are the green value, and bits 0-7 are the blue value.114

This format is the format used by the default RGB color model.

Returns: an integer representing this color in RGB format.

getTransparentPixel()

Returns: the index of the transparent pixel in this color model, or -1 if there is no transparent pixel.

getRGB(int pixel)

Calculates a single integer representing the alpha, red, green, and blue components of the pixel in this color model. The components are each scaled to be a value between 0 and 255 . The integer returned is the number such that bits 24-31 are the alpha value, 16-23 are the red value, bits 8-15 are the green value, and bits 0-7 are the blue value.

This format is the format used by the default RGB color model.

Returns: an integer representing this color in RGB format.

getTransparentPixel()

Returns: the index of the transparent pixel in this color model, or -1 if there is no transparent pixel.

Class MemoryImageSource

A memory image source is an implementation of the image producer interface. It uses an array to produce pixel values for the image. An application can use the method createImage in class Component to create an Image from a MemoryImageSource.

	
	public  class  java.awt.image.MemoryImageSource extends  java.lang.Object  
	implements java.awt.image.ImageProducer   
	{
			// 	Constructors
		public MemoryImageSource(int  w, int  h, ColorModel cm, byte  pix[],int  off,  int  scan);
		/*	Constructs an image producer object which uses an array of bytes to produce data for the image object. The pixel at coordinate  (i, j)  is stored in the pixel array at index (j x scan +i + offset).
		*/
		public MemoryImageSource(int  w, int  h, ColorModel cm, byte  pix[],int  off,  int  scan,  Hashtable  props);
		/*	Constructs an image producer   object which uses an array of bytes to produce data for the image object. The pixel at coordinate (i, j) is stored in the pixel array at index (j x scan +i + offset).In addition, the image has the properties indicated in the hash table argument.
		*/
		public MemoryImageSource(int  w, int  h, ColorModel cm, int  pix[], /*	Constructs an image producer   object which uses an array of integers to produce data for the image object. The pixel at coordinate  (i, j) is stored in the pixel array at index (j x scan +i + offset).
		*/
		public MemoryImageSource(int  w, int  h, ColorModel cm,	  int  pix[],int  off, int scan, Hashtable  props);
		/*	Constructs an image producer object which uses an array of integers to produce data for the image object. The pixel at coordinate (i, j)   is stored in the pixel array at index (j x scan +i + offset).In addition, the image has the properties indicated in the hash table argument.
		*/
		public MemoryImageSource(int  w, int  h, int pix[], int off, int  scan);
		/*	Constructs an image producer  object which uses an array of integers to produce data for the image object. The pixel at coordinate  ( i, j) is stored in the pixel array at index (j x scan +i + offset).The resulting image uses the default RGB color model.
		*/
		public MemoryImageSource(int  w, int  h, int pix[],int  off,int scan, Hashtable  props);
		/*	Constructs an image producer  object which uses an array of integers to produce data for the image object. The pixel at coordinate (i, j)  is stored in the pixel array at index (j x scan +i + offset). The resulting image uses the default RGB color model.In addition, the image has the properties indicated in the hash table argument.
		*/
		/*	Note : The parameters in the above constructors :
		w- the width of the image  
		h - the height of the image  
		cm - the color model used the pixels  
		pix - the array of pixel values  
		off - the offset of the first pixel in the array 
		scan - the number of pixels in the array per line
		props - a hash table of properties
	*/
		// 	Methods
		public void addConsumer(ImageConsumer  ic); 
		public boolean isConsumer(ImageConsumer  ic);	 
		ublic void removeConsumer(ImageConsumer  ic);	 
		public void	requestTopDownLeftRightResend(ImageConsumer  ic);
		public void ctstartProduion(ImageConsumer  ic);	 
	}
	The methods are stated in Table 5.7. 

 Table 5.7

Methods

Description

addConsumer(ImageConsumer ic)

Registers the image consumer argument as wanting the image produced by this image producer.

The addConsumer method of MemoryImageSource, since it already has the image data, immediately delivers the data to the image consumer.

isConsumer(ImageConsumer ic)

Determines if the image consumer argument is registered with this image producer as a consumer. Because the memory image source delivers data immediately to its image consumer, the memory image source can have at most one consumer at a time.

Returns: true if the specified image consumer argument is currently registered with this image producer as one of its consumers; false otherwise.

removeConsumer(ImageConsumer ic)

Removes the specified image consumer object from the list of consumers registered to receive the image data.

requestTopDownLeftRightResend(ImageConsumer ic)

An image consumer sends this message to request that the image producer attempt to resend the image data one more time in top-down, left-to-right order. The requestTopDownLeftRightResend method of memoryImageSource ignores this request, since it always sends its data in that order.

startProduction(ImageConsumer ic)

Registers the image consumer argument as wanting the image produced by this image producer. In addition, this method forces the image producer to start an immediate reconstruction of the image data. The addConsumer method of MemoryImageSource, since it already has the image data, immediately delivers the data to the image consumer.

Class PixelGrabber

The pixel grabber implements an image consumer which can be attached to an image or image producer object to retrieve a subset of the pixels in that image. Pixels are stored in the array in the default RGB color model. Most applications need to call only the grabPixel methods and the status method of this class. The remaining methods are part of the ImageConsumer interface and allow the pixel grabber to receive the image from the image producer.

		
	public  class  java.awt.image.PixelGrabber extends  java.lang.Object  
	implements java.awt.image.ImageConsumer  
	{
			// 	Constructors
		public PixelGrabber(Image  img, int  x, int  y, int  w, int  h, int  pix[],int  off, int  scansize);
		/*	Creates a new pixel grabber object to grab the rectangular section of pixels from the specified image into the specified array. The pixels are stored in the array in the default RGB color model. The pixel data for the coordinate (i, j), where (i, j) is inside the indicted rectangle, is stored in the array at index 
			(j - scan) + (i-x) + offset of the pixel array. The x and y coordinates indicate the upper left corner of the rectangle of pixels to retrieve from the image, relative to the default (unscaled) size of the image.
		*/

		public PixelGrabber(ImageProducer  ip, int  x, int  y, int  w, int  h, int  pix[], int  off, int  scansize);
		/*	Creates a new pixel grabber object to grab the rectangular section of pixels from the specified image producer into the specified array. The pixels are stored in the array in the default RGB color model. The pixel data for the coordinate (i,j), where  (i, j) is inside the indicted rectangle, is stored in the array at the index  
			(j - scan) + (i-x) + offset of the pixel array. The x and y coordinates indicate the upper left corner of the rectangle of pixels to retrieve from the image, relative to the default (unscaled) size of the image.
		/*	Note : The various parameters used in these constructors are :
				img - the image from which to retrieve pixels  
			x - the x coordinate of the upper left corner  
			y - the y coordinate of the upper left corner  
			w - the width of the rectangle to retrieve  
			h - the height of the rectangle to retrieve  
			pix - the array of integers into which to place the RGB pixels retrieved from the image  
			scansize - the distance from the start of one row of pixels to the start of  the next row in the array.
		*/
			// 	Methods
		public boolean grabPixels();	 
		public boolean grabPixels(long  ms);	 
		public void imageComplete(int  status);	 
		public void setColorModel(ColorModel  model); 
		public void setDimensions(int  width, int  height)	 
		public void setHints(int  hints); 
		public void setPixels(int  srcX, int  srcY, int  srcW, int  srcH, 
		ColorModel  model, byte  pixels[], int  srcOff, int  srcScan);
		public void setPixels(int  srcX, int  srcY, int  srcW, int  srcH,ColorModel  model,  int  pixels[], int  srcOff,  int  srcScan);
		public void setProperties(Hashtable  props);	 
		public int status(); 
	}

	Methods are described in Table 5.8.

Table 5.8  

Methods

Description

grabPixels()

Requests the image or image producer to start delivering pixels to this image consumer. It waits for all of the pixels in the rectangle of interest to be delivered.

Returns: true if the pixels were successfully grabbed; false on abort or error.

Throws : InterruptedException, If another thread has interrupted this thread.

grabPixels(long ms)

Requests the image or image producer to start delivering pixels to this image consumer. It waits for all of the pixels in the rectangle of interest to be delivered, or until the specified timeout has elapsed.

Returns: true if the pixels were successfully grabbed; false on abort, error or timeout.Throws : InterruptedException , If another thread has interrupted this thread.

imageComplete(int status)

The image producer calls the imageComplete method when it has completed an image or it has errored in producing or loading the image. The imageComplete method of PixelGrabber notifies all processes waiting for the pixels to wake up. It uses the value of the status flag to determine whether the image was successfully retrieved or not.

setColorModel(ColorModel model)

The image producer calls the setColorModel method to specify the color model for the majority of the subsequent setPixels method calls. The setColorModel method of PixelGrabber ignores this call.

setDimensions(int width, int height)

The image producer calls the setHints method of the image consumer to indicate the order in which the bits will be delivered.

setHints(int hints)

The image producer calls the setHints method of the image consumer to indicate the order in which the bits will be delivered. The setHints method of PixelGrabber ignores the hints.

setPixels(.,byte pixels[],.)

The image producer calls the setPixels method of the image consumer one or more times to deliver the pixels of the image. The setPixels method of PixelGrabber places the bits, if appropriate, into the array of bits passed to it by a call to the grabPixels method.

setPixels(..int pixels[],..)

The image producer calls the setPixels method of the image consumer one or more times to deliver the pixels of the image. The setPixels method of PixelGrabber places the bits, if appropriate, into the array of bits passed to it by a call to the grabPixels method.

setProperties(Hashtable props)

The image producer calls the setProperties method of the image consumer to let it know of additional properties of the image. The 119setProperties method of PixelGrabber ignores the hints.

status()

Returns the bitwise OR of the appropriate ImageObserver interface flag.

Class RGBImageFilter

This class provides an easy way to create an image filter which modifies the pixels of the original image by converting them one at a time in the default RGB color model. Objects of this class are meant to be used in conjunction with a filtered image source object to produce filtered versions of existing images.

This class is an abstract class. It provides the calls needed to channel all the pixel data through a single method which converts pixels, one at a time, into the default RGB color model, regardless of the color model being used by the image producer. The only method which needs to be defined to create a useable image filter is the filterRGB method.

	public  abstract  class  java.awt.image.RGBImageFilter extends  java.awt.image.ImageFilter 
	{
        	// 	Member elements
    	protected boolean canFilterIndexColorModel;
		/*	Setting this value to true indicates that the the value returned by the filterRGB method  is independent of the x and y arguments, and depends only on the rgb argument. Subclasses of  RGBImageFilter should set this field to true in their constructor if their filterRGB method does not depend on the coordinate of the pixel being filtered. Filtering the colormap entries of an indexed color map can be much faster than filtering every pixel. The default value is false. 
		*/	 
    	protected ColorModel newmodel;	
		//	This field is used to remember the newcm argument passed to the substituteColorModel method. 
    	protected ColorModel origmodel;	 
		//	This field is used to remember the oldcm argument passed to the substituteColorModel method.

        	// 	Constructors
    	public RGBImageFilter();
		//	The default constructor. 	 
        	// 	Methods
    	public IndexColorModel filterIndexColorModel(IndexColorModel  icm);
    	public abstract int filterRGB(int  x, int  y, int  rgb);
    	public void filterRGBPixels(int  x, int  y, int  w, int  h, int  pixels[],int  off, int  scansize);
		public void setColorModel(ColorModel  model);
	 
    	public void setPixels(int  x, int  y, int  w, int  h, ColorModel  model,byte  pixels[], ;int  off, int  scansize);
    	public void setPixels(int  x, int  y, int  w, int  h ColorModel  model,int  pixels[], int  off, int  scansize);
    	public void substituteColorModel(ColorModel  oldcm, ColorModel  newcm);
	}
	Methods in this class is described as in Table 5.9.

Table 5.9.

 

Methods

Description

filterIndexColorModel(IndexColorModel icm)

Filters an index color model object by running each entry in its color table through the filterRGB method . The call to filterRGB has the x and y arguments set to -1 as a flag to indicate that a color table entry is being filtered rather than an actual pixel value.

filterRGB(int x, int y,int rgb)

Specifies a method to convert a single input pixel, whose value is specified in the default RGB color model, to a new pixel value also in the default RGB color model. Subclasses of RGBImageFilter must provide a definition for this method. If the value of the field canFilterIndexColorModel is true, then the value returned by this method must not depend on the x and y coordinates. If the x and y arguments are both -1, this method is being called by the filterIndexColorModel method.

Returns : the new value of the pixel, in the default RGB color model.

filterRGBPixels( ...)

Filters a buffer of pixels in the default RGB color model by passing them one by one through the filterRGB method. The setPixels method of the filter's consumer is then called with the resulting buffer and the color model argument set to the default RGB color model. Only pixels that fall within the specified rectangle are modified. The value of the pixel at coordinate (i, j) stored in the pixel array at index

( j x scan + I + offset).

setColorModel(ColorModel model)

The image producer calls the setColorModel method to specify the color model for the majority of the subsequent setPixels method calls. The setColorModel method of RGBImageFilter determines if the color model argument is an index color model and if the canFilterIndexColorModel field is true. If both conditions are true, the method creates a new color model by calling the filterIndexColorModel method on the model argument. The original color model and the newly created color model are then passed as arguments to the substituteColorModel method. In addition, the setColorModel method of the filter's consumer is called with the newly created color model. If either condition is false, the method calls the 121the setColorModel method of its consumer with the default RGB color map.

setPixels(..byte pixels[],..)

The image producer calls the setPixels method of the image consumer one or more times to deliver the pixels of the image. The setPixels method of RGBImageFilter looks to see if the color model is the same one that has already been converted and remembered for substitution by a previous call to the substituteColorModel mrethod. If so, it calls the setPixels method of its consumer , changing the color model argument to be the alternative color model. Otherwise, the method converts the buffer of byte pixels to the default RGB color model and passes the converted buffer to the filterRGBPixels method to be converted one by one.

setPixels(..int pixels[], ..)

The image producer calls the setPixels method of the image consumer one or more times to deliver the pixels of the image. The setPixels method of RGBImageFilter looks to see if the color model is the same one that has already been converted and remembered for substitution by a previous call to the substituteColorModel method. If so, it calls the setPixels method of the filter's consumer , changing the color model argument to be the alternative color model. Otherwise, the method converts the buffer of byte pixels to the default RGB color model and passes the converted buffer to the filterRGBPixels method to be converted one by one.

substituteColorModel(ColorModel oldcm, ColorModel newcm)

Registers two color model objects for substitution: If the oldcm is the color model during any subsequent call to either of the setPixels methods, the newcm argument is substituted and the pixels passed through unmodifed.

Interface ImageConsumer

The image consumer interface specifies the methods that all image consumers must implement. An image consumer is an object interested in data produced by the image producers. When a consumer is added to an image producer, the producer delivers all the data about the image using the method calls defined in this interface.

		public  interface  java.awt.image.ImageConsumer
		{
				// status value for the imageComplete method
		   public final static int IMAGEABORTED;	
			/*	IMAGEABORTED = 4, Argument to the imageComplete method  indicating that the image creation process was deliberately aborted. 
			*/
		   public final static int IMAGEERROR;
			/*	IMAGEERROR = 1, Argument to the imageComplete method  indicating that an error was encountered while producing the image.
			public final static int SINGLEFRAMEDONE;
			/*	SINGLEFRAMEDONE = 2, Argument to the imageComplete method indicating that one frame of the image is complete but there are more frames to be delivered.
			*/ 	 
		   public final static int STATICIMAGEDONE;
			/*	STATICIMAGEDONE = 3,  Argument to the imageComplete method  indicating that the image is complete and there are no more pixels or frames to be delivered.
			*/ 	 

			  // hints used by the setHints method
		   public final static int COMPLETESCANLINES;
			/*	COMPLETESCANLINES = 4,  Flag in the setHints method  indicating that the pixels will be delivered in (multiples of) complete scanlines at a time.	
			*/ 
		   public final static int RANDOMPIXELORDER;
			/*	RANDOMPIXELORDER = 1,  Flag in the setHints method  indicating that the pixels will be delivered in a random order. 	
			*/ 
		   public final static int SINGLEFRAME;
			/*	SINGLEFRAME = 8, Flag in the setHints method  indicating that the image contains a single static image. The pixels will be defined in calls to the setPixels methods; the image producer then calls the imageComplete method   with the STATICIMAGEDONE flag  after which no more image data is delivered.
			*/

		   public final static int SINGLEPASS;
			//	SINGLEPASS = 8, Flag in the setHints method   indicating that each pixel will be delivered only  once. 	 
		   public final static int TOPDOWNLEFTRIGHT;	
			/*	TOPDOWNLEFTRIGHT = 2,Flag in the setHints method indicating that the pixels will be delivered in a top-down, left-to-right order. 
			*/


				// 	Methods
		   public abstract void imageComplete(int  status);	 
		   public abstract void setColorModel(ColorModel  model);	 
		   public abstract void	setDimensions(int  width, int  height);
		   public abstract void setHints(int  hintflags);	 
		   public abstract void 	setPixels(int  x, int  y, int  w, int  h, 
		   ColorModel  model, byte  pixels[], int  off, int  scansize);
		   public abstract void	setPixels(int  x, int  y, int  w, int  h, 
		   ColorModel  model,  int  pixels[], int  off, int  scansize);
		   public abstract void setProperties(Hashtable  props); 
		}
		Methods are stated as in Table 5.10.

Table 5.10

 

Methods

Description

imageComplete(int status)

The image producer calls the imageComplete method when one of the following conditions has occurred :

it has delivered all the pixels that the source image contains,

a single frame of a multi-frame animation has been completed,

an error in loading or producing the image has occurred.

the image production was explicitly aborted by the application.

The image consumer should remove itself from the list of consumers registered with the image producer unless it is interested in subsequent frames.

setColorModel(ColorModel model)

The image producer calls the setColorModel method to specify the color model for the majority of the subsequent setPixels method calls. Each set of pixels delivered using the setPixels method includes its own color model, so the image consumer should not assume that the model argument is the color model argument in every subsequent setPixels method call. A notable case where multiple ColorModel objects may be seen is a filtered image where for each set of pixels that it filters, the filter determines whether the pixels can be sent on untouched, using the original ColorModel, or should be modified (filtered) and passed on using a ColorModel more convenient for the filtering process.

setDimensions(int width, int height)

The image producer calls the setDimensions of the image consumer to indicate the width and height of the image.

setHints(int hintflags)

The image producer calls the setHints method of the image consumer to indicate the order in which the bits will be delivered. The image producer is allowed to deliver the pixels in any order, but the image consumer may be able to scale or convert the pixels more efficiently or with higher quality if it knows some information about how the pixels will be presented.The image producer should call the setHints method before any calls to the image consumer's setPixels method. The hintflags agument is a bit mask of hints about the manner in which the pixels are delivered.124

setPixels(..byte pixels[],..)

The image producer calls the setPixels method of the image consumer one or more times to deliver the pixels of the image. Each call specifies the location and size of the rectangle of source pixels contained in the array of pixels.The specified color model object should be used to convert the pixels into their corresponding color and alpha components. The pixel at coordinate (i, j) is stored in the pixel array at index

(j - y) x scan + (i-x) + offset.

The pixels delivered using this method are all stored as bytes.

setPixels(...int pixels[],..)

The image producer calls the setPixels method of the image consumer one or more times to deliver the pixels of the image. Each call specifies the location and size of the rectangle of source pixels that are contained in the array of pixels. The specified color model object should be used to convert the pixels into their corresponding color and alpha components. The pixel at coordinate )(i, j) is stored in the pixel array at index

(j - y) x scan + (i-x) + offset.

The pixels delivered using this method are all stored as integers.

setProperties(Hashtable props)

The image producer calls the setProperties method of the image consumer to indicate additional properties of the image. All keys to the hash table are strings. The corresponding values depend on the string.

Interface ImageObserver

The image observer interface specifies the methods that all image observers must implement. An image observer is interested in receiving asynchronous notifications about the image as the image is being constructed.

   public  interface  java.awt.image.ImageObserver
	{
		// flags for the infoflags argument to imageUpdate
		public final static int ABORT;
		/*	ABORT = 128 : This flag in the infoflags argument to imageUpdate  indicates that the image was aborted before production was complete. 
		*/	
		public final static int ALLBITS;
		/*	ALLBITS = 32 : This flag in the infoflags argument to imageUpdate   indicates that a static image is now complete and can be drawn in its final form. The x, y, width, and height arguments to the imageUpdate method should be ignored when this flag is set in the status
		*/
		public final static int ERROR; 
		/*	ERROR = 64 : This flag in the infoflags argument to imageUpdate  indicates that an image which was being tracked asynchronously has encountered an error. No further information will become available, and drawing the image will fail. Whenever this flag is set, the ABORT flag must also be set.
		*/
		public final static int FRAMEBITS;	 
			/*	FRAMEBITS = 16 : This flag in the infoflags argument to imageUpdate  indicates that another complete frame of a multi-frame image can now be drawn. The x, y, width, and height arguments to the imageUpdate method should be ignored when this flag is set in the status.
			/*
		public final static int HEIGHT;
			/*	HEIGHT = 2 : This flag in the infoflags argument to imageUpdate   indicates that the height of the base image is now available and can be taken from the height argument to the imageUpdate method.
			*/ 	 
			public final static int PROPERTIES; 
			/*	PROPERTIES = 4 : This flag in the infoflags argument to imageUpdate indicates that the properties of the image are now available.
			*/
		public final static int SOMEBITS; 
			/*	SOMEBITS = 8 : This flag in the infoflags argument to imageUpdate   indicates that the pixels needed for drawing a scaled variation of the image are now available.
			*/


		public final static int WIDTH; 
			/*	WIDTH  = 2 : This flag in the infoflags argument to imageUpdate  indicates that the width of the base image is now available and can be taken from the width argument to the imageUpdate method.
			*/

			// 	Methods
		public abstract boolean	imageUpdate(Image  img, int  infoflags, int  x,int  y, int  width, int  height);
		/*	This image observer method is called when previously requested information about an image becomes available. 
			Asynchronous interfaces are method calls such as getWidth, getHeight, and drawImage   which take an image observer as an argument. These methods register the caller as being interested either in information about the image or about an output version of the image. This method should return true if further calls to imageUpdate are needed by this image observer; false if it needs no more information. 
			The infoflags argument should be the OR of the following flags : 
 
			WIDTH  HEIGHT PROPERTIES  SOMEBITS  FRAMEBITS  ALLBITS  ERROR ABORT  

			The interpretation of the x, y, width, and height arguments depends on the infoflags  argument. 
		*/
	}

Interface ImageProducer

The image producer interface specifies the methods that all image producers must implement. Every image contains an image producer which can reconstruct the image whenever it is needed by an image consumer.

	public  interface  java.awt.image.ImageProducer
	{
        	// 	Methods
    	public abstract void addConsumer(ImageConsumer  ic);	 
    	public abstract boolean isConsumer(ImageConsumer  ic);	 
    	public abstract void removeConsumer(ImageConsumer  ic); 
    	public abstract void requestTopDownLeftRightResend(ImageConsumer  ic);
    	public abstract void startProduction(ImageConsumer  ic);	 
	}
	Methods are described in Table 5.11.

Table 5.11

 

Methods

Description

addConsumer(ImageConsumer ic)

Registers the image consumer argument as wanting information about this image. The image producer may, at its discretion, start delivering the image data immediately, or it may wait until the next image reconstruction is forced by a call to the startProduction method.

isConsumer(ImageConsumer ic)

Returns : true, if the specified image consumer argument is currently registered with this image producer as one of its consumers; false otherwise.

removeConsumer(ImageConsumer ic)

Removes the specified image consumer object from the list of consumers registered to receive the image data. It is not an error to remove a consumer that is not registered. The image producer should stop sending data to this consumer as soon as it is feasible.

requestTopDownLeftRightResend(ImageConsumer ic)

An image consumer inokes this method to request that the image producer attempt to resend the image data one more time in top-down, left-to-right order. If the data cannot be resent in that order, the image producer ignores this call. If the data can be resent in that order, the image producer should respond by executing the following minimum set of image consumer method calls127 :

ic.setHints(TOPDOWNLEFTRIGHT | otherhints );
ic.setPixels(...); // As many times as needed
ic.imageComplete();

An image consumer might call this method so that it can use a higher quality conversion algorithm which depends on receiving the pixels in order.

startProduction

(ImageConsumer ic)

Registers the image consumer argument as wanting information about this image. In addition, this method forces the image producer to start an immediate reconstruction of the image data. Then data will be delivered both to this image consumer and to any other image consumers which may have already been registered with the producer using the addConsumer method.