Generated by
JDiff

Class java.awt.image.ReplicateScaleFilter

Documentation changed from old to new.

Changed Constructors
ReplicateScaleFilter(int, int) Documentation changed from old to new.
Constructs a ReplicateScaleFilter that scales the pixels from its source Image as specified by the width and height parameters.
 

Changed Methods
void setDimensions(int, int) Documentation changed from old to new.
Override the dimensions of the source image and pass the dimensions of the new scaled size to the ImageConsumer.
void setProperties(Hashtable) Documentation changed from old to new.
Passes along the properties from the source object after adding a property indicating the scale applied.
void setPixels(int, int, int, int, ColorModel, byte[], int, int) Documentation changed from old to new.
Choose which rows and columns of the delivered byte pixels are needed for the destination scaled image and pass through just those rows and columns that are needed replicated as necessary.
void setPixels(int, int, int, int, ColorModel, int[], int, int) Documentation changed from old to new.
Choose which rows and columns of the delivered int pixels are needed for the destination scaled image and pass through just those rows and columns that are needed replicated as necessary.
 

Changed Fields
int destHeight Documentation changed from old to new.
The target height to scale the image.
int destWidth Documentation changed from old to new.
The target width to scale the image.
Object outpixbuf Documentation changed from old to new.
A byte array initialized with a size of #destWidth and used to deliver a row of pixel data to the ImageConsumer
int srcHeight Documentation changed from old to new.
The height of the source image.
int srcWidth Documentation changed from old to new.
The width of the source image.
int[] srccols Documentation changed from old to new.
An int array containing information about a column of pixels.
int[] srcrows Documentation changed from old to new.
An int array containing information about a row of pixels.