java.lang.Object | ||
↳ | java.awt.Image | |
↳ | sun.awt.image.ToolkitImage |
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
[Expand]
Inherited Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Construct an image from an ImageProducer object.
|
Protected Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Flushes all reconstructable resources being used by this Image object.
| |||||||||||
Creates a graphics context for drawing to an off-screen image.
| |||||||||||
Return the height of the original image source.
| |||||||||||
Return the height of the original image source.
| |||||||||||
Return a property of the image by name.
| |||||||||||
Gets the object that produces the pixels for the image.
| |||||||||||
Return the width of the original image source.
| |||||||||||
Return the width of the original image source.
| |||||||||||
Sets a hint for this image about how important acceleration is.
|
Protected Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
Flushes all reconstructable resources being used by this Image object. This includes any pixel data that is being cached for rendering to the screen as well as any system resources that are being used to store data or pixels for the image if they can be recreated. The image is reset to a state similar to when it was first created so that if it is again rendered, the image data will have to be recreated or fetched again from its source.
Examples of how this method affects specific types of Image object:
validate
method.
ImageProducer
are unloaded and all local resources are released.
These objects can later be reloaded from their original source
as needed when they are rendered, just as when they were first
created.
Creates a graphics context for drawing to an off-screen image. This method can only be called for off-screen images.
Return the height of the original image source. If the height isn't known, then the image is reconstructed.
Return the height of the original image source. If the height isn't known, then the ImageObserver object will be notified when the data is available.
iw | an object waiting for the image to be loaded. |
---|
-1
if the height is not yet known.Return a property of the image by name. Individual property names are defined by the various image formats. If a property is not defined for a particular image, then this method will return the UndefinedProperty object. If the properties for this image are not yet known, then this method will return null and the ImageObserver object will be notified later. The property name "comment" should be used to store an optional comment which can be presented to the user as a description of the image, its source, or its author.
name | a property name. |
---|---|
observer | an object waiting for this image to be loaded. |
Gets the object that produces the pixels for the image. This method is called by the image filtering classes and by methods that perform image conversion and scaling.
Return the width of the original image source. If the width isn't known, then the image is reconstructed.
Return the width of the original image source. If the width isn't known, then the ImageObserver object will be notified when the data is available.
iw | an object waiting for the image to be loaded. |
---|
-1
if the width is not yet known.Sets a hint for this image about how important acceleration is. This priority hint is used to compare to the priorities of other Image objects when determining how to use scarce acceleration resources such as video memory. When and if it is possible to accelerate this Image, if there are not enough resources available to provide that acceleration but enough can be freed up by de-accelerating some other image of lower priority, then that other Image may be de-accelerated in deference to this one. Images that have the same priority take up resources on a first-come, first-served basis.
priority | a value between 0 and 1, inclusive, where higher values indicate more importance for acceleration. A value of 0 means that this Image should never be accelerated. Other values are used simply to determine acceleration priority relative to other Images. |
---|