This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


javax.swing
class ImageIcon

java.lang.Object extended by javax.swing.ImageIcon
All Implemented Interfaces:
Serializable, Accessible, Icon

Most common ways to construct:

URL connectUrl = …;

ImageIcon connectIcon = new ImageIcon(connectUrl);

Based on 19 examples

 

ImageIcon cheerleader = new ImageIcon();

Based on 18 examples


public class ImageIcon
extends Object
implements Icon, Serializable, Accessible

An implementation of the Icon interface that paints Icons from Images. Images that are created from a URL, filename or byte array are preloaded using MediaTracker to monitor the loaded state of the image.

For further information and examples of using image icons, see How to Use Icons in The Java Tutorial.

Warning: Serialized objects of this class will not be compatible with future Swing releases. The current serialization support is appropriate for short term storage or RMI between applications running the same version of Swing. As of 1.4, support for long term storage of all JavaBeansTM has been added to the java.beans package. Please see {@link java.beans.XMLEncoder}.


Nested Class Summary
protected class

           This class implements accessibility support for the ImageIcon class.
 
Field Summary
protected static Component component
          
protected static MediaTracker tracker
          
 
Constructor Summary

          Creates an uninitialized image icon.
ImageIcon(byte[] imageData)

          Creates an ImageIcon from an array of bytes which were read from an image file containing a supported image format, such as GIF, JPEG, or (as of 1.3) PNG.
ImageIcon(byte[] imageData, String description)

          Creates an ImageIcon from an array of bytes which were read from an image file containing a supported image format, such as GIF, JPEG, or (as of 1.3) PNG.

          Creates an ImageIcon from an image object.
ImageIcon(Image image, String description)

          Creates an ImageIcon from the image.
ImageIcon(String filename)

          Creates an ImageIcon from the specified file.
ImageIcon(String filename, String description)

          Creates an ImageIcon from the specified file.
ImageIcon(URL location)

          Creates an ImageIcon from the specified URL.
ImageIcon(URL location, String description)

          Creates an ImageIcon from the specified URL.
 
Method Summary
 AccessibleContext

          Gets the AccessibleContext associated with this ImageIcon.
 String

          Gets the description of the image.
 int

          Gets the height of the icon.
 int

          Gets the width of the icon.
 Image

          Returns this icon's Image.
 int

          Returns the status of the image loading operation.
 ImageObserver

          Returns the image observer for the image.
protected void

          Loads the image, returning only when the image is loaded.
 void
paintIcon(Component c, Graphics g, int x, int y)

          Paints the icon.
 void
setDescription(String description)

          Sets the description of the image.
 void
setImage(Image image)

          Sets the image displayed by this icon.
 void

          Sets the image observer for the image.
 String

          Returns a string representation of this image.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

component

protected static final Component component

tracker

protected static final MediaTracker tracker
Constructor Detail

ImageIcon

public ImageIcon()
Creates an uninitialized image icon.


ImageIcon

public ImageIcon(byte[] imageData)
Creates an ImageIcon from an array of bytes which were read from an image file containing a supported image format, such as GIF, JPEG, or (as of 1.3) PNG. Normally this array is created by reading an image using Class.getResourceAsStream(), but the byte array may also be statically stored in a class. If the resulting image has a "comment" property that is a string, then the string is used as the description of this icon.

Parameters:
imageData - an array of pixels in an image format supported by the AWT Toolkit, such as GIF, JPEG, or (as of 1.3) PNG

ImageIcon

public ImageIcon(byte[] imageData,
                 String description)
Creates an ImageIcon from an array of bytes which were read from an image file containing a supported image format, such as GIF, JPEG, or (as of 1.3) PNG. Normally this array is created by reading an image using Class.getResourceAsStream(), but the byte array may also be statically stored in a class.

Parameters:
imageData - an array of pixels in an image format supported by the AWT Toolkit, such as GIF, JPEG, or (as of 1.3) PNG
description - a brief textual description of the image

ImageIcon

public ImageIcon(Image image)
Creates an ImageIcon from an image object. If the image has a "comment" property that is a string, then the string is used as the description of this icon.

Parameters:
image - the image

ImageIcon

public ImageIcon(Image image,
                 String description)
Creates an ImageIcon from the image.

Parameters:
image - the image
description - a brief textual description of the image

ImageIcon

public ImageIcon(String filename)
Creates an ImageIcon from the specified file. The image will be preloaded by using MediaTracker to monitor the loading state of the image. The specified String can be a file name or a file path. When specifying a path, use the Internet-standard forward-slash ("/") as a separator. (The string is converted to an URL, so the forward-slash works on all systems.) For example, specify:
    new ImageIcon("images/myImage.gif") 
The description is initialized to the filename string.

Parameters:
filename - a String specifying a filename or path

ImageIcon

public ImageIcon(String filename,
                 String description)
Creates an ImageIcon from the specified file. The image will be preloaded by using MediaTracker to monitor the loading state of the image.

Parameters:
filename - the name of the file containing the image
description - a brief textual description of the image

ImageIcon

public ImageIcon(URL location)
Creates an ImageIcon from the specified URL. The image will be preloaded by using MediaTracker to monitor the loaded state of the image. The icon's description is initialized to be a string representation of the URL.

Parameters:
location - the URL for the image

ImageIcon

public ImageIcon(URL location,
                 String description)
Creates an ImageIcon from the specified URL. The image will be preloaded by using MediaTracker to monitor the loaded state of the image.

Parameters:
location - the URL for the image
description - a brief textual description of the image
Method Detail

getAccessibleContext

public AccessibleContext getAccessibleContext()
Gets the AccessibleContext associated with this ImageIcon. For image icons, the AccessibleContext takes the form of an AccessibleImageIcon. A new AccessibleImageIcon instance is created if necessary.

Returns:
an AccessibleImageIcon that serves as the AccessibleContext of this ImageIcon

getDescription

public String getDescription()
Gets the description of the image. This is meant to be a brief textual description of the object. For example, it might be presented to a blind user to give an indication of the purpose of the image. The description may be null.

Returns:
a brief textual description of the image

getIconHeight

public int getIconHeight()
Gets the height of the icon.

Returns:
the height in pixels of this icon

getIconWidth

public int getIconWidth()
Gets the width of the icon.

Returns:
the width in pixels of this icon

getImage

public Image getImage()
Returns this icon's Image.

Returns:
the Image object for this ImageIcon

getImageLoadStatus

public int getImageLoadStatus()
Returns the status of the image loading operation.

Returns:
the loading status as defined by java.awt.MediaTracker

getImageObserver

public ImageObserver getImageObserver()
Returns the image observer for the image.

Returns:
the image observer, which may be null

loadImage

protected void loadImage(Image image)
Loads the image, returning only when the image is loaded.

Parameters:
image - the image

paintIcon

public synchronized void paintIcon(Component c,
                                   Graphics g,
                                   int x,
                                   int y)
Paints the icon. The top-left corner of the icon is drawn at the point (x, y) in the coordinate space of the graphics context g. If this icon has no image observer, this method uses the c component as the observer.

Parameters:
c - the component to be used as the observer if this icon has no image observer
g - the graphics context
x - the X coordinate of the icon's top-left corner
y - the Y coordinate of the icon's top-left corner

setDescription

public void setDescription(String description)
Sets the description of the image. This is meant to be a brief textual description of the object. For example, it might be presented to a blind user to give an indication of the purpose of the image.

Parameters:
description - a brief textual description of the image

setImage

public void setImage(Image image)
Sets the image displayed by this icon.

Parameters:
image - the image

setImageObserver

public void setImageObserver(ImageObserver observer)
Sets the image observer for the image. Set this property if the ImageIcon contains an animated GIF, so the observer is notified to update its display. For example:
     icon = new ImageIcon(...)
     button.setIcon(icon);
     icon.setImageObserver(button);
 

Parameters:
observer - the image observer

toString

public String toString()
Returns a string representation of this image.

Overrides:
toString in class Object
Returns:
a string representing this image


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.