Java in a Nutshell Online Quick Reference for Java 1.1
Availability: JDK 1.0
public abstract class Image extends Object { // Default Constructor: public Image() // Constants 1.1 public static final int SCALE_AREA_AVERAGING; 1.1 public static final int SCALE_DEFAULT; 1.1 public static final int SCALE_FAST; 1.1 public static final int SCALE_REPLICATE; 1.1 public static final int SCALE_SMOOTH; public static final Object UndefinedProperty; // Public Instance Methods public abstract void flush(); public abstract Graphics getGraphics(); public abstract int getHeight(ImageObserver observer); public abstract Object getProperty(String name, ImageObserver observer); 1.1 public Image getScaledInstance(int width, int height, int hints); public abstract ImageProducer getSource(); public abstract int getWidth(ImageObserver observer); }