API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.awt.image.renderable. RenderableImage View Source
Author(s)
Since
Version
Serial
Hierarchy
 RenderableImage
Subinterfaces
Description
public interface RenderableImage
  A RenderableImage is a common interface for rendering-independent images (a notion which subsumes resolution independence).
See also:   
Methods
Hide/Show inherited methods
public RenderedImage createDefaultRendering ()
  Returnd a RenderedImage instance of this image with a default width and height in pixels.
public RenderedImage createRendering (RenderContext renderContext)
  Creates a RenderedImage that represented a rendering of this image using a given RenderContext.
public RenderedImage createScaledRendering (int w, int h, RenderingHints hints)
  Creates a RenderedImage instance of this image with width w, and height h in pixels.
public float getHeight ()
  Gets the height in user coordinate space.
public float getMinX ()
  Gets the minimum X coordinate of the rendering-independent image data.
public float getMinY ()
  Gets the minimum Y coordinate of the rendering-independent image data.
public Object getProperty (String name)
  Gets a property from the property set of this image.
public String getPropertyNames ()
  Returns a list of names recognized by getProperty.
public Vector<RenderableImage> getSources ()
  Returns a vector of RenderableImages that are the sources of image data for this RenderableImage.
public float getWidth ()
  Gets the width in user coordinate space.
public boolean isDynamic ()
  Returns true if successive renderings (that is, calls to createRendering() or createScaledRendering()) with the same arguments may produce different results.
Fields
Hide/Show inherited fields
publicfinalstatic String HINTS_OBSERVED = "HINTS_OBSERVED"
  String constant that can be used to identify a property on a RenderedImage obtained via the createRendering or createScaledRendering methods.
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar