Uses of Class
org.eclipse.swt.graphics.ImageData

Packages that use ImageData
org.eclipse.jface.resource Provides support for managing resources such as SWT fonts and images. 
org.eclipse.swt.graphics SWT graphics classes. 
 

Uses of ImageData in org.eclipse.jface.resource
 

Fields in org.eclipse.jface.resource declared as ImageData
protected static ImageData ImageDescriptor.DEFAULT_IMAGE_DATA
          A small red square used to warn that an image cannot be created.
 

Methods in org.eclipse.jface.resource that return ImageData
 ImageData CompositeImageDescriptor.getImageData()
           
abstract  ImageData ImageDescriptor.getImageData()
          Creates and returns a new SWT ImageData object for this image descriptor.
 

Methods in org.eclipse.jface.resource with parameters of type ImageData
static ImageDescriptor ImageDescriptor.createFromImageData(ImageData data)
          Creates and returns a new image descriptor given ImageData describing the image.
protected  void CompositeImageDescriptor.drawImage(ImageData src, int ox, int oy)
          Draws the given source image data into this composite image at the given position.
 

Uses of ImageData in org.eclipse.swt.graphics
 

Fields in org.eclipse.swt.graphics declared as ImageData
 ImageData[] ImageLoader.data
          the array of ImageData objects in this ImageLoader.
 

Methods in org.eclipse.swt.graphics that return ImageData
 ImageData Image.getImageData()
          Returns an ImageData based on the receiver Modifications made to this ImageData will not affect the Image.
 ImageData ImageData.getTransparencyMask()
          Returns an ImageData which specifies the transparency mask information for the receiver, or null if the receiver has no transparency and is not an icon.
static ImageData ImageData.internal_new(int width, int height, int depth, PaletteData palette, int scanlinePad, byte[] data, int maskPad, byte[] maskData, byte[] alphaData, int alpha, int transparentPixel, int type, int x, int y, int disposalMethod, int delayTime)
          Invokes internal SWT functionality to create a new instance of this class.
 ImageData[] ImageLoader.load(java.io.InputStream stream)
          Loads an array of ImageData objects from the specified input stream.
 ImageData[] ImageLoader.load(java.lang.String fileName)
          Loads an array of ImageData objects from the file with the specified name.
 ImageData ImageData.scaledTo(int width, int height)
          Returns a copy of the receiver which has been stretched or shrunk to the specified size.
 

Constructors in org.eclipse.swt.graphics with parameters of type ImageData
Image(Device device, ImageData data)
          Constructs an instance of this class from the given ImageData.