java.awt

Class Image

  • java.lang.Object
    • java.awt.Image
  • public abstract class Image extends java.lang.Object
    The abstract class Image is the superclass of all classes that represent graphical images. The image must be obtained in a platform-specific manner.
    Since:
    JDK1.0
    • Fields 
      Modifier and Type Field and Description
      Ordinary member indicator SCALE_AREA_AVERAGING Reveal DetailHide Detail
      Use the Area Averaging image scaling algorithm.
      Ordinary member indicator SCALE_DEFAULT Reveal DetailHide Detail
      Use the default image-scaling algorithm.
      Ordinary member indicator SCALE_FAST Reveal DetailHide Detail
      Choose an image-scaling algorithm that gives higher priority to scaling speed than smoothness of the scaled image.
      Ordinary member indicator SCALE_REPLICATE Reveal DetailHide Detail
      Use the image scaling algorithm embodied in the ReplicateScaleFilter class.
      Ordinary member indicator SCALE_SMOOTH Reveal DetailHide Detail
      Choose an image-scaling algorithm that gives higher priority to image smoothness than scaling speed.
      Ordinary member indicator UndefinedProperty Reveal DetailHide Detail
      The UndefinedProperty object should be returned whenever a property which was not defined for a particular image is fetched.
    • Constructors 
      Constructor and Description
      Ordinary member indicator Image Reveal DetailHide Detail
       
    • Methods 
      Modifier and Type Method and Description
      Ordinary member indicator flush Reveal DetailHide Detail
      Flushes all reconstructable resources being used by this Image object.
      Ordinary member indicator getAccelerationPriority Reveal DetailHide Detail
      Returns the current value of the acceleration priority hint.
      Ordinary member indicator getCapabilities Reveal DetailHide Detail
      Returns an ImageCapabilities object which can be inquired as to the capabilities of this Image on the specified GraphicsConfiguration.
      Ordinary member indicator getGraphics Reveal DetailHide Detail
      Creates a graphics context for drawing to an off-screen image.
      Ordinary member indicator getHeight Reveal DetailHide Detail
      Determines the height of the image.
      Ordinary member indicator getProperty Reveal DetailHide Detail
      Gets a property of this image by name.
      Ordinary member indicator getScaledInstance Reveal DetailHide Detail
      Creates a scaled version of this image.
      Ordinary member indicator getSource Reveal DetailHide Detail
      Gets the object that produces the pixels for the image.
      Ordinary member indicator getWidth Reveal DetailHide Detail
      Determines the width of the image.
      Ordinary member indicator setAccelerationPriority Reveal DetailHide Detail
      Sets a hint for this image about how important acceleration is.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
This document was created by Dulcet from the OpenJDK sources. Copyright © 1993, 2012 Oracle and/or its affiliates. All rights reserved.

SourceForge