java.lang.Objectjava.awt.image.ImageFilter
java.awt.image.ReplicateScaleFilter
All Implemented Interfaces:
Cloneable, ImageConsumer
Direct Known Subclasses:
AreaAveragingScaleFilter
It is meant to be used in conjunction with a FilteredImageSource object to produce scaled versions of existing images. Due to implementation dependencies, there may be differences in pixel values of an image filtered on different platforms.
Jim - Graham| Field Summary | ||
|---|---|---|
| protected int | srcWidth | The width of the source image. |
| protected int | srcHeight | The height of the source image. |
| protected int | destWidth | The target width to scale the image. |
| protected int | destHeight | The target height to scale the image. |
| protected int[] | srcrows | An int array containing information about a
row of pixels. |
| protected int[] | srccols | An int array containing information about a
column of pixels. |
| protected Object | outpixbuf | A byte array initialized with a size of
#destWidth and used to deliver a row of pixel
data to the ImageConsumer . |
| Fields inherited from java.awt.image.ImageFilter: |
|---|
| consumer |
| Constructor: |
|---|
|
| Method from java.awt.image.ReplicateScaleFilter Summary: |
|---|
| setDimensions, setPixels, setPixels, setProperties |
| Methods from java.awt.image.ImageFilter: |
|---|
| clone, getFilterInstance, imageComplete, resendTopDownLeftRight, setColorModel, setDimensions, setHints, setPixels, setPixels, setProperties |
| Methods from java.lang.Object: |
|---|
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from java.awt.image.ReplicateScaleFilter Detail: |
|---|
Note: This method is intended to be called by the
|
Note: This method is intended to be called by the
|
Note: This method is intended to be called by the
|
super.setProperties,
which might result in additional properties being added.
Note: This method is intended to be called by the
|