home *** CD-ROM | disk | FTP | other *** search
/ Internet Gallery / INTERGAL.bin / intergal / prgs / idv21 / data.z / PixelGrabber.pre < prev    next >
Text File  |  1995-10-08  |  585b  |  15 lines

  1. import java.awt.*;
  2. import java.awt.image.*;
  3.  
  4. public class \Name\ extends java.awt.image.PixelGrabber
  5.    {
  6.    public \Name\ (Image AImage, int ALeft, int ATop, int AWidth, int AHeight, int APixels[], int AOffset, int AScanSize)
  7.       {
  8.       super (AImage, ALeft, ATop, AWidth, AHeight, APixels, AOffset, AScanSize);
  9.       }
  10.    public \Name\ (ImageProducer AImageProducer, int ALeft, int ATop, int AWidth, int AHeight, int APixels[], int AOffset, int AScanSize)
  11.       {
  12.       super (AImageProducer, ALeft, ATop, AWidth, AHeight, APixels, AOffset, AScanSize);
  13.       }
  14.    }
  15.