ImageData contains metadata describing an Image. ImageData Constructors:
ConstructorDescription
ImageData(InputStream stream)Creates an ImageData from an image passed as a stream.
ImageData(String filename)Creates an ImageData from the image specified by filename.
ImageData(int width, int height, int depth, PaletteData palette)Creates an ImageData with the specified width, height, color depth, and palette.
ImageData(int width, int height, int depth, PaletteData palette, int scanlinePad, byte[] data)Creates an ImageData with the specified width, height, color depth, palette, scanline pad, and data. data holds the image's pixel data.