1 /* Image.java -- Java class for images
2 Copyright (C) 1999 Free Software Foundation, Inc.
4 This file is part of GNU Classpath.
6 GNU Classpath is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Classpath is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Classpath; see the file COPYING. If not, write to the
18 Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
21 Linking this library statically or dynamically with other modules is
22 making a combined work based on this library. Thus, the terms and
23 conditions of the GNU General Public License cover the whole
26 As a special exception, the copyright holders of this library give you
27 permission to link this library with independent modules to produce an
28 executable, regardless of the license terms of these independent
29 modules, and to copy and distribute the resulting executable under
30 terms of your choice, provided that you also meet, for each linked
31 independent module, the terms and conditions of the license of that
32 module. An independent module is a module which is not derived from
33 or based on this library. If you modify this library, you may extend
34 this exception to your version of the library, but you are not
35 obligated to do so. If you do not wish to do so, delete this
36 exception statement from your version. */
41 import java
.awt
.image
.*;
44 * This is the abstract superclass of all image objects in Java.
46 * @author Aaron M. Renn (arenn@urbanophile.com)
48 public abstract class Image
56 * Constant indicating that the default scaling algorithm should be used.
58 public static final int SCALE_DEFAULT
= 1;
61 * Constant indicating that a fast scaling algorithm should be used.
63 public static final int SCALE_FAST
= 2;
66 * Constant indicating that a smooth scaling algorithm should be used.
68 public static final int SCALE_SMOOTH
= 4;
71 * Constant indicating that the <code>ReplicateScaleFilter</code> class
72 * algorithm should be used for scaling.
74 public static final int SCALE_REPLICATE
= 8;
77 * Constant indicating that the area averaging scaling algorithm should be
80 public static final int SCALE_AREA_AVERAGING
= 16;
83 * This variable is returned whenever a property that is not defined
86 public static final Object UndefinedProperty
= Image
.class;
88 /*************************************************************************/
95 * A default constructor for subclasses.
102 /*************************************************************************/
109 * Returns the width of the image, or -1 if it is unknown. If the
110 * image width is unknown, the observer object will be notified when
111 * the value is known.
113 * @param observer The image observer for this object.
116 getWidth(ImageObserver observer
);
118 /*************************************************************************/
121 * Returns the height of the image, or -1 if it is unknown. If the
122 * image height is unknown, the observer object will be notified when
123 * the value is known.
125 * @param observer The image observer for this object.
128 getHeight(ImageObserver observer
);
130 /*************************************************************************/
133 * Returns the image producer object for this object.
135 * @return The image producer for this object.
137 public abstract ImageProducer
140 /*************************************************************************/
143 * Returns a graphics context object for drawing an off-screen object.
144 * This method is only valid for off-screen objects.
146 * @return A graphics context object for an off-screen object.
148 public abstract Graphics
151 /*************************************************************************/
154 * This method requests a named property for an object. The value of the
155 * property is returned. The value <code>UndefinedProperty</code> is
156 * returned if there is no property with the specified name. The value
157 * <code>null</code> is returned if the properties for the object are
158 * not yet known. In this case, the specified image observer is notified
159 * when the properties are known.
161 * @param name The requested property name.
162 * @param observer The image observer for this object.
164 public abstract Object
165 getProperty(String name
, ImageObserver observer
);
167 /*************************************************************************/
170 * Scales the image to the requested dimension.
174 * @param width The width of the scaled image.
175 * @param height The height of the scaled image.
176 * @param flags A value indicating the algorithm to use, which will be
177 * set from contants defined in this class.
179 * @return The scaled <code>Image</code> object.
182 getScaledInstance(int width
, int height
, int flags
)
187 /*************************************************************************/
190 * Flushes (that is, destroys) any resources used for this image. This
191 * includes the actual image data.