Lines Matching refs:image
24 import java.awt.image.AreaAveragingScaleFilter;
25 import java.awt.image.FilteredImageSource;
26 import java.awt.image.ImageFilter;
27 import java.awt.image.ImageObserver;
28 import java.awt.image.ImageProducer;
29 import java.awt.image.ReplicateScaleFilter;
34 * The Image abstract class represents the graphic images.
38 public abstract class Image {
42 * defined for a particular image.
47 * The Constant SCALE_DEFAULT indicates the default image scaling algorithm.
52 * The Constant SCALE_FAST indicates an image scaling algorithm which places
53 * a higher priority on scaling speed than on the image's smoothness.
58 * The Constant SCALE_SMOOTH indicates an image scaling algorithm which
59 * places a higher priority on image smoothness than on scaling speed.
64 * The Constant SCALE_REPLICATE indicates the image scaling algorithm in the
70 * The Constant SCALE_AREA_AVERAGING indicates the area averaging image
76 * The acceleration priority indicates image acceleration.
86 * Gets the image property with the specified name. The UndefinedProperty
87 * object should be return if the property is not specified for this image.
92 * the name of image's property.
100 * Gets the ImageProducer object which represents data of this Image.
102 * @return the ImageProducer object which represents data of this Image.
107 * Gets the width of this image. The specified ImageObserver object is
108 * notified when the width of this image is available.
112 * of this image is available.
113 * @return the width of image, or -1 if the width of this image is not
119 * Gets the height of this image. The specified ImageObserver object is
120 * notified when the height of this image is available.
124 * of this image is available.
125 * @return the height of image, or -1 if the height of this image is not
131 * Gets the scaled instance of this Image. This method returns an Image
132 * object constructed from the source of this image with the specified
136 * the width of scaled Image.
138 * the height of scaled Image.
141 * @return the scaled Image.
143 public Image getScaledInstance(int width, int height, int hints) {
155 * Gets a Graphics object for rendering this image. This method can be used
158 * @return a Graphics object for rendering to this image.
163 * Flushes resources which are used by this Image object. This method resets
164 * the image to the reconstructed state from the image's source.
169 * Gets the acceleration priority of this image.
171 * @return the acceleration priority of this image.
178 * Sets the acceleration priority for this image.
192 * Gets an ImageCapabilities object of this Image object for the specified
198 * @return an ImageCapabilities object of this Image object for the
202 // Note: common image is not accelerated.