
 |
Chapter 19 java.awt Reference |
 |
Image
Name
Image
The Image class represents
a displayable object maintained in memory. Because Image
is an abstract class, you never work with the Image
class itself, but with a platform specific subclass. However, you should
never need to know what that subclass is. To draw on an Image,
get its graphics context.
Flag that requests use of AreaAveragingScaleFilter.
Flag that requests use of the default image scaling algorithm.
Flag that requests use of an image scaling algorithm that is faster rather
than smoother.
Flag that requests use of ReplicateScaleFilter.
Flag that requests use of an image scaling algorithm that is smoother rather
than faster.
Possible return object from getProperty().
- Description
-
Resets image to initial state.
- Throws
-
- ClassCastException
-
If image created from file or URL.
- Returns
-
The graphics context of the image.
- Description
-
Gets the graphics context of the image for drawing.
- Parameters
-
- observer
-
An image observer; usually the Component
on which the image is rendered.
- Returns
-
Image height, or -1 if the height is not yet available.
- Parameters
-
- name
-
Name of the property
to fetch.
- observer
-
An image observer; usually the Component
on which the image is rendered.
- Returns
-
Object representing the requested
property, null, or UndefinedProperty.
- Throws
-
- ArrayIndexOutOfBoundsException
-
If
offset or length
is invalid.
- Description
-
Retrieves a property from the image's private property list.
- Parameters
-
- width
-
The width for the scaled
image. Use -1 to preserve the aspect ratio with reference to height.
- height
-
The height for the scaled image. Use -1 to preserve the
aspect ratio with reference to width.
- hints
-
One or more of the SCALE_
constants.
- Returns
-
The scaled image. It may be loaded asynchronously, even if the original
image was fully loaded.
- Description
-
Creates a copy of an image, scaled to width
x height and using an algorithm
chosen based on the hints given.
- Returns
-
The ImageProducer of the image.
- Parameters
-
- observer
-
An image observer; usually the Component
on which the image is rendered.
- Returns
-
Image width, or -1 if the width is not yet available.
Graphics, ImageObserver,
ImageProducer, Object,
Properties, String
|
|