Java java.awt.image MemoryImageSource fields, constructors, methods, implement or subclass

Example usage for Java java.awt.image MemoryImageSource fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.awt.image MemoryImageSource.

The text is from its open source code.

Subclass

java.awt.image.MemoryImageSource has subclasses.
Click this link to see all its subclasses.

Constructor

MemoryImageSource(int w, int h, int[] pix, int off, int scan)
Constructs an ImageProducer object which uses an array of integers in the default RGB ColorModel to produce data for an Image object.
MemoryImageSource(int w, int h, ColorModel cm, byte[] pix, int off, int scan)
Constructs an ImageProducer object which uses an array of bytes to produce data for an Image object.
MemoryImageSource(int w, int h, ColorModel cm, int[] pix, int off, int scan)
Constructs an ImageProducer object which uses an array of integers to produce data for an Image object.
MemoryImageSource(int w, int h, int[] pix, int off, int scan, Hashtable props)
Constructs an ImageProducer object which uses an array of integers in the default RGB ColorModel to produce data for an Image object.