MediaTracker.removeImage

MediaTracker.removeImage

Class Overview | Class Members | This Package | All Packages

Syntax 1
public synchronized void removeImage( Image image )
Parameters
image
the image to be removed
Description
Remove the specified image from this media tracker. All instances of the specified image are removed, regardless of scale or ID.

See Also
removeImage, removeImage



Syntax 2
public synchronized void removeImage( Image image, int id )
Parameters
image
the image to be removed.
id
the tracking ID frrom which to remove the image.
Description
Remove the specified image from the specified tracking ID of this media tracker. All instances of Image being tracked under the specified ID are removed regardless of scale.

See Also
removeImage, removeImage



Syntax 3
public synchronized void removeImage( Image image, int id, int width, int height )
Parameters
image
the image to be removed
id
the tracking ID from which to remove the image.
width
the width to remove (-1 for unscaled).
height
the height to remove (-1 for unscaled).
Description
Remove the specified image with the specified width, height, and ID from this media tracker. Only the specified instance (with any duplicates) is removed.

See Also
removeImage, removeImage