Java Doc for Image.java in  » 6.0-JDK-Core » AWT » java » awt » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Home
Java Source Code / Java Documentation
1.6.0 JDK Core
2.6.0 JDK Modules
3.6.0 JDK Modules com.sun
4.6.0 JDK Modules com.sun.java
5.6.0 JDK Modules sun
6.6.0 JDK Platform
7.Ajax
8.Apache Harmony Java SE
9.Aspect oriented
10.Authentication Authorization
11.Blogger System
12.Build
13.Byte Code
14.Cache
15.Chart
16.Chat
17.Code Analyzer
18.Collaboration
19.Content Management System
20.Database Client
21.Database DBMS
22.Database JDBC Connection Pool
23.Database ORM
24.Development
25.EJB Server
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Net
51.Parser
52.PDF
53.Portal
54.Profiler
55.Project Management
56.Report
57.RSS RDF
58.Rule Engine
59.Science
60.Scripting
61.Search Engine
62.Security
63.Sevlet Container
64.Source Control
65.Swing Library
66.Template Engine
67.Test Coverage
68.Testing
69.UML
70.Web Crawler
71.Web Framework
72.Web Mail
73.Web Server
74.Web Services
75.Web Services apache cxf 2.2.6
76.Web Services AXIS2
77.Wiki Engine
78.Workflow Engines
79.XML
80.XML UI
Java Source Code / Java Documentation » 6.0 JDK Core » AWT » java.awt 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.awt.Image

All known Subclasses:   java.awt.image.VolatileImage,  java.awt.image.BufferedImage,
Image
abstract public class Image (Code)
The abstract class Image is the superclass of all classes that represent graphical images. The image must be obtained in a platform-specific manner.
version:
   1.50, 05/05/07
author:
   Sami Shaio
author:
   Arthur van Hoff
since:
   JDK1.0


Field Summary
final public static  intSCALE_AREA_AVERAGING
     Use the Area Averaging image scaling algorithm.
final public static  intSCALE_DEFAULT
     Use the default image-scaling algorithm.
final public static  intSCALE_FAST
     Choose an image-scaling algorithm that gives higher priority to scaling speed than smoothness of the scaled image.
final public static  intSCALE_REPLICATE
     Use the image scaling algorithm embodied in the ReplicateScaleFilter class.
final public static  intSCALE_SMOOTH
     Choose an image-scaling algorithm that gives higher priority to image smoothness than scaling speed.
final public static  ObjectUndefinedProperty
     The UndefinedProperty object should be returned whenever a property which was not defined for a particular image is fetched.
protected  floataccelerationPriority
     Priority for accelerating this image.
 SurfaceManagersurfaceManager
    


Method Summary
public  voidflush()
     Flushes all reconstructable resources being used by this Image object.
public  floatgetAccelerationPriority()
     Returns the current value of the acceleration priority hint.
public  ImageCapabilitiesgetCapabilities(GraphicsConfiguration gc)
     Returns an ImageCapabilities object which can be inquired as to the capabilities of this Image on the specified GraphicsConfiguration. This allows programmers to find out more runtime information on the specific Image object that they have created.
abstract public  GraphicsgetGraphics()
     Creates a graphics context for drawing to an off-screen image.
abstract public  intgetHeight(ImageObserver observer)
     Determines the height of the image.
abstract public  ObjectgetProperty(String name, ImageObserver observer)
     Gets a property of this image by name.
public  ImagegetScaledInstance(int width, int height, int hints)
     Creates a scaled version of this image. A new Image object is returned which will render the image at the specified width and height by default.
abstract public  ImageProducergetSource()
     Gets the object that produces the pixels for the image.
abstract public  intgetWidth(ImageObserver observer)
     Determines the width of the image.
public  voidsetAccelerationPriority(float priority)
     Sets a hint for this image about how important acceleration is. This priority hint is used to compare to the priorities of other Image objects when determining how to use scarce acceleration resources such as video memory.

Field Detail
SCALE_AREA_AVERAGING
final public static int SCALE_AREA_AVERAGING(Code)
Use the Area Averaging image scaling algorithm. The image object is free to substitute a different filter that performs the same algorithm yet integrates more efficiently into the image infrastructure supplied by the toolkit.
See Also:   java.awt.image.AreaAveragingScaleFilter
since:
   JDK1.1



SCALE_DEFAULT
final public static int SCALE_DEFAULT(Code)
Use the default image-scaling algorithm.
since:
   JDK1.1



SCALE_FAST
final public static int SCALE_FAST(Code)
Choose an image-scaling algorithm that gives higher priority to scaling speed than smoothness of the scaled image.
since:
   JDK1.1



SCALE_REPLICATE
final public static int SCALE_REPLICATE(Code)
Use the image scaling algorithm embodied in the ReplicateScaleFilter class. The Image object is free to substitute a different filter that performs the same algorithm yet integrates more efficiently into the imaging infrastructure supplied by the toolkit.
See Also:   java.awt.image.ReplicateScaleFilter
since:
   JDK1.1



SCALE_SMOOTH
final public static int SCALE_SMOOTH(Code)
Choose an image-scaling algorithm that gives higher priority to image smoothness than scaling speed.
since:
   JDK1.1



UndefinedProperty
final public static Object UndefinedProperty(Code)
The UndefinedProperty object should be returned whenever a property which was not defined for a particular image is fetched.



accelerationPriority
protected float accelerationPriority(Code)
Priority for accelerating this image. Subclasses are free to set different default priorities and applications are free to set the priority for specific images via the setAccelerationPriority(float) method.
since:
   1.5



surfaceManager
SurfaceManager surfaceManager(Code)





Method Detail
flush
public void flush()(Code)
Flushes all reconstructable resources being used by this Image object. This includes any pixel data that is being cached for rendering to the screen as well as any system resources that are being used to store data or pixels for the image if they can be recreated. The image is reset to a state similar to when it was first created so that if it is again rendered, the image data will have to be recreated or fetched again from its source.

Examples of how this method affects specific types of Image object:

  • BufferedImage objects leave the primary Raster which stores their pixels untouched, but flush any information cached about those pixels such as copies uploaded to the display hardware for accelerated blits.
  • Image objects created by the Component methods which take a width and height leave their primary buffer of pixels untouched, but have all cached information released much like is done for BufferedImage objects.
  • VolatileImage objects release all of their pixel resources including their primary copy which is typically stored on the display hardware where resources are scarce. These objects can later be restored using their java.awt.image.VolatileImage.validate validate method.
  • Image objects created by the Toolkit and Component classes which are loaded from files, URLs or produced by an ImageProducer are unloaded and all local resources are released. These objects can later be reloaded from their original source as needed when they are rendered, just as when they were first created.



getAccelerationPriority
public float getAccelerationPriority()(Code)
Returns the current value of the acceleration priority hint.
See Also:   Image.setAccelerationPriority(float priority)
See Also:    setAccelerationPriority value between 0 and 1, inclusive, which represents the currentpriority value
since:
   1.5



getCapabilities
public ImageCapabilities getCapabilities(GraphicsConfiguration gc)(Code)
Returns an ImageCapabilities object which can be inquired as to the capabilities of this Image on the specified GraphicsConfiguration. This allows programmers to find out more runtime information on the specific Image object that they have created. For example, the user might create a BufferedImage but the system may have no video memory left for creating an image of that size on the given GraphicsConfiguration, so although the object may be acceleratable in general, it does not have that capability on this GraphicsConfiguration.
Parameters:
  gc - a GraphicsConfiguration object. A value of nullfor this parameter will result in getting the image capabilitiesfor the default GraphicsConfiguration. an ImageCapabilities object that containsthe capabilities of this Image on the specifiedGraphicsConfiguration.
See Also:   java.awt.image.VolatileImage.getCapabilities
See Also:   VolatileImage.getCapabilities()
since:
   1.5



getGraphics
abstract public Graphics getGraphics()(Code)
Creates a graphics context for drawing to an off-screen image. This method can only be called for off-screen images. a graphics context to draw to the off-screen image.
exception:
  UnsupportedOperationException - if called for a non-off-screen image.
See Also:   java.awt.Graphics
See Also:   java.awt.Component.createImage(intint)



getHeight
abstract public int getHeight(ImageObserver observer)(Code)
Determines the height of the image. If the height is not yet known, this method returns -1 and the specified ImageObserver object is notified later.
Parameters:
  observer - an object waiting for the image to be loaded. the height of this image, or -1 if the height is not yet known.
See Also:   java.awt.Image.getWidth
See Also:   java.awt.image.ImageObserver



getProperty
abstract public Object getProperty(String name, ImageObserver observer)(Code)
Gets a property of this image by name.

Individual property names are defined by the various image formats. If a property is not defined for a particular image, this method returns the UndefinedProperty object.

If the properties for this image are not yet known, this method returns null, and the ImageObserver object is notified later.

The property name "comment" should be used to store an optional comment which can be presented to the application as a description of the image, its source, or its author.
Parameters:
  name - a property name.
Parameters:
  observer - an object waiting for this image to be loaded. the value of the named property. NullPointerException if the property name is null.
See Also:   java.awt.image.ImageObserver
See Also:   java.awt.Image.UndefinedProperty




getScaledInstance
public Image getScaledInstance(int width, int height, int hints)(Code)
Creates a scaled version of this image. A new Image object is returned which will render the image at the specified width and height by default. The new Image object may be loaded asynchronously even if the original source image has already been loaded completely.

If either width or height is a negative number then a value is substituted to maintain the aspect ratio of the original image dimensions. If both width and height are negative, then the original image dimensions are used.
Parameters:
  width - the width to which to scale the image.
Parameters:
  height - the height to which to scale the image.
Parameters:
  hints - flags to indicate the type of algorithm to usefor image resampling. a scaled version of the image.
exception:
  IllegalArgumentException - if widthor height is zero.
See Also:   java.awt.Image.SCALE_DEFAULT
See Also:   java.awt.Image.SCALE_FAST
See Also:   
See Also:   java.awt.Image.SCALE_SMOOTH
See Also:   java.awt.Image.SCALE_REPLICATE
See Also:   java.awt.Image.SCALE_AREA_AVERAGING
since:
   JDK1.1




getSource
abstract public ImageProducer getSource()(Code)
Gets the object that produces the pixels for the image. This method is called by the image filtering classes and by methods that perform image conversion and scaling. the image producer that produces the pixels for this image.
See Also:   java.awt.image.ImageProducer



getWidth
abstract public int getWidth(ImageObserver observer)(Code)
Determines the width of the image. If the width is not yet known, this method returns -1 and the specified ImageObserver object is notified later.
Parameters:
  observer - an object waiting for the image to be loaded. the width of this image, or -1 if the width is not yet known.
See Also:   java.awt.Image.getHeight
See Also:   java.awt.image.ImageObserver



setAccelerationPriority
public void setAccelerationPriority(float priority)(Code)
Sets a hint for this image about how important acceleration is. This priority hint is used to compare to the priorities of other Image objects when determining how to use scarce acceleration resources such as video memory. When and if it is possible to accelerate this Image, if there are not enough resources available to provide that acceleration but enough can be freed up by de-accelerating some other image of lower priority, then that other Image may be de-accelerated in deference to this one. Images that have the same priority take up resources on a first-come, first-served basis.
Parameters:
  priority - a value between 0 and 1, inclusive, where highervalues indicate more importance for acceleration. A value of 0means that this Image should never be accelerated. Other valuesare used simply to determine acceleration priority relative to otherImages.
throws:
  IllegalArgumentException - if priority is lessthan zero or greater than 1.
since:
   1.5



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.