KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > awt > image > MemoryImageSource

java.awt.image
Class MemoryImageSource

java.lang.Object
  extended by java.awt.image.MemoryImageSource
All Implemented Interfaces:
ImageProducer
See Also:
Top Examples, Source Code

public void addConsumer(ImageConsumer ic)
See Also:
NullPointerException, ImageProducer
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public boolean isConsumer(ImageConsumer ic)
See Also:
ImageProducer
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public MemoryImageSource(int w,
                         int h,
                         int[] pix,
                         int off,
                         int scan)
See Also:
ColorModel.getRGBdefault(), Component.createImage(java.awt.image.ImageProducer)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public MemoryImageSource(int w,
                         int h,
                         int[] pix,
                         int off,
                         int scan,
                         Hashtable<?,?> props)
See Also:
ColorModel.getRGBdefault(), Component.createImage(java.awt.image.ImageProducer)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public MemoryImageSource(int w,
                         int h,
                         ColorModel cm,
                         byte[] pix,
                         int off,
                         int scan)
See Also:
Component.createImage(java.awt.image.ImageProducer)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public MemoryImageSource(int w,
                         int h,
                         ColorModel cm,
                         byte[] pix,
                         int off,
                         int scan,
                         Hashtable<?,?> props)
See Also:
Component.createImage(java.awt.image.ImageProducer)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public MemoryImageSource(int w,
                         int h,
                         ColorModel cm,
                         int[] pix,
                         int off,
                         int scan)
See Also:
Component.createImage(java.awt.image.ImageProducer)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public MemoryImageSource(int w,
                         int h,
                         ColorModel cm,
                         int[] pix,
                         int off,
                         int scan,
                         Hashtable<?,?> props)
See Also:
Component.createImage(java.awt.image.ImageProducer)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void newPixels()
See Also:
setAnimated(boolean), ImageConsumer, newPixels(int, int, int, int, boolean)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void newPixels(byte[] newpix,
                      ColorModel newmodel,
                      int offset,
                      int scansize)
See Also:
setAnimated(boolean), newPixels(int, int, int, int, boolean)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void newPixels(int x,
                      int y,
                      int w,
                      int h)
See Also:
setFullBufferUpdates(boolean), setAnimated(boolean), ImageConsumer, newPixels(int, int, int, int, boolean)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void newPixels(int x,
                      int y,
                      int w,
                      int h,
                      boolean framenotify)
See Also:
setFullBufferUpdates(boolean), setAnimated(boolean), ImageConsumer, SINGLEFRAMEDONE
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void newPixels(int[] newpix,
                      ColorModel newmodel,
                      int offset,
                      int scansize)
See Also:
setAnimated(boolean), newPixels(int, int, int, int, boolean)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void removeConsumer(ImageConsumer ic)
See Also:
ImageProducer
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void requestTopDownLeftRightResend(ImageConsumer ic)
See Also:
ImageProducer
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setAnimated(boolean animated)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setFullBufferUpdates(boolean fullbuffers)
See Also:
setAnimated(boolean)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void startProduction(ImageConsumer ic)
See Also:
ImageProducer
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags