java.lang.Objectjava.awt.image.MemoryImageSource
public class MemoryImageSource
This class is an implementation of the ImageProducer interface which uses an array to produce pixel values for an Image. Here is an example which calculates a 100x100 image representing a fade from black to blue along the X axis and a fade from black to red along the Y axis:
int w = 100; int h = 100; int pix[] = new int[w * h]; int index = 0; for (int y = 0; y < h; y++) { int red = (y * 255) / (h - 1); for (int x = 0; x < w; x++) { int blue = (x * 255) / (w - 1); pix[index++] = (255 << 24) | (red << 16) | blue; } }
int pixels[]; MemoryImageSource source; public void init() { int width = 50; int height = 50; int size = width * height; pixels = new int[size]; int value = getBackground().getRGB(); for (int i = 0; i < size; i++) { pixels[i] = value; } source.setAnimated(true); image = createImage(source); } public void run() { while (true) { try { thread.sleep(10); return; } // Modify the values in the pixels array at (x, y, w, h) // Send the new data to the interested ImageConsumers source.newPixels(x, y, w, h); } }
ImageProducer| Constructor Summary | |
|---|---|
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,
byte[] pix,
int off,
int scan,
Hashtable<?,?> props)
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,
ColorModel cm,
int[] pix,
int off,
int scan,
Hashtable<?,?> props)
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)
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,
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. |
|
| Method Summary | |
|---|---|
void |
addConsumer(ImageConsumer ic)
Adds an ImageConsumer to the list of consumers interested in data for this image. |
boolean |
isConsumer(ImageConsumer ic)
Determines if an ImageConsumer is on the list of consumers currently interested in data for this image. |
void |
newPixels()
Sends a whole new buffer of pixels to any ImageConsumers that are currently interested in the data for this image and notify them that an animation frame is complete. |
void |
newPixels(byte[] newpix,
ColorModel newmodel,
int offset,
int scansize)
Changes to a new byte array to hold the pixels for this image. |
void |
newPixels(int[] newpix,
ColorModel newmodel,
int offset,
int scansize)
Changes to a new int array to hold the pixels for this image. |
void |
newPixels(int x,
int y,
int w,
int h)
Sends a rectangular region of the buffer of pixels to any ImageConsumers that are currently interested in the data for this image and notify them that an animation frame is complete. |
void |
newPixels(int x,
int y,
int w,
int h,
boolean framenotify)
Sends a rectangular region of the buffer of pixels to any ImageConsumers that are currently interested in the data for this image. |
void |
removeConsumer(ImageConsumer ic)
Removes an ImageConsumer from the list of consumers interested in data for this image. |
void |
requestTopDownLeftRightResend(ImageConsumer ic)
Requests that a given ImageConsumer have the image data delivered one more time in top-down, left-right order. |
void |
setAnimated(boolean animated)
Changes this memory image into a multi-frame animation or a single-frame static image depending on the animated parameter. |
void |
setFullBufferUpdates(boolean fullbuffers)
Specifies whether this animated memory image should always be updated by sending the complete buffer of pixels whenever there is a change. |
void |
startProduction(ImageConsumer ic)
Adds an ImageConsumer to the list of consumers interested in data for this image and immediately starts delivery of the image data through the ImageConsumer interface. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public MemoryImageSource(int w,
int h,
ColorModel cm,
byte[] pix,
int off,
int scan)
w - the width of the rectangle of pixelsh - the height of the rectangle of pixelscm - the specified ColorModelpix - an array of pixelsoff - the offset into the array of where to store the
first pixelscan - the distance from one row of pixels to the next in
the arrayComponent.createImage(java.awt.image.ImageProducer)
public MemoryImageSource(int w,
int h,
ColorModel cm,
byte[] pix,
int off,
int scan,
Hashtable<?,?> props)
w - the width of the rectangle of pixelsh - the height of the rectangle of pixelscm - the specified ColorModelpix - an array of pixelsoff - the offset into the array of where to store the
first pixelscan - the distance from one row of pixels to the next in
the arrayprops - a list of properties that the ImageProducer
uses to process an imageComponent.createImage(java.awt.image.ImageProducer)
public MemoryImageSource(int w,
int h,
ColorModel cm,
int[] pix,
int off,
int scan)
w - the width of the rectangle of pixelsh - the height of the rectangle of pixelscm - the specified ColorModelpix - an array of pixelsoff - the offset into the array of where to store the
first pixelscan - the distance from one row of pixels to the next in
the arrayComponent.createImage(java.awt.image.ImageProducer)
public MemoryImageSource(int w,
int h,
ColorModel cm,
int[] pix,
int off,
int scan,
Hashtable<?,?> props)
w - the width of the rectangle of pixelsh - the height of the rectangle of pixelscm - the specified ColorModelpix - an array of pixelsoff - the offset into the array of where to store the
first pixelscan - the distance from one row of pixels to the next in
the arrayprops - a list of properties that the ImageProducer
uses to process an imageComponent.createImage(java.awt.image.ImageProducer)
public MemoryImageSource(int w,
int h,
int[] pix,
int off,
int scan)
w - the width of the rectangle of pixelsh - the height of the rectangle of pixelspix - an array of pixelsoff - the offset into the array of where to store the
first pixelscan - the distance from one row of pixels to the next in
the arrayComponent.createImage(java.awt.image.ImageProducer),
ColorModel.getRGBdefault()
public MemoryImageSource(int w,
int h,
int[] pix,
int off,
int scan,
Hashtable<?,?> props)
w - the width of the rectangle of pixelsh - the height of the rectangle of pixelspix - an array of pixelsoff - the offset into the array of where to store the
first pixelscan - the distance from one row of pixels to the next in
the arrayprops - a list of properties that the ImageProducer
uses to process an imageComponent.createImage(java.awt.image.ImageProducer),
ColorModel.getRGBdefault()| Method Detail |
|---|
public void addConsumer(ImageConsumer ic)
addConsumer in interface ImageProduceric - the specified ImageConsumer
NullPointerException - if the specified
ImageConsumer is nullImageConsumerpublic boolean isConsumer(ImageConsumer ic)
isConsumer in interface ImageProduceric - the specified ImageConsumer
true if the ImageConsumer
is on the list; false otherwise.ImageConsumerpublic void removeConsumer(ImageConsumer ic)
removeConsumer in interface ImageProduceric - the specified ImageConsumerImageConsumerpublic void startProduction(ImageConsumer ic)
startProduction in interface ImageProduceric - the specified ImageConsumer
image data through the ImageConsumer interface.ImageConsumerpublic void requestTopDownLeftRightResend(ImageConsumer ic)
requestTopDownLeftRightResend in interface ImageProduceric - the specified ImageConsumerImageConsumerpublic void setAnimated(boolean animated)
This method should be called immediately after the MemoryImageSource is constructed and before an image is created with it to ensure that all ImageConsumers will receive the correct multi-frame data. If an ImageConsumer is added to this ImageProducer before this flag is set then that ImageConsumer will see only a snapshot of the pixel data that was available when it connected.
animated - true if the image is a
multi-frame animationpublic void setFullBufferUpdates(boolean fullbuffers)
This method should be called immediately after the MemoryImageSource is constructed and before an image is created with it to ensure that all ImageConsumers will receive the correct pixel delivery hints.
fullbuffers - true if the complete pixel
buffer should always
be sentsetAnimated(boolean)public void newPixels()
public void newPixels(int x,
int y,
int w,
int h)
x - the x coordinate of the upper left corner of the rectangle
of pixels to be senty - the y coordinate of the upper left corner of the rectangle
of pixels to be sentw - the width of the rectangle of pixels to be senth - the height of the rectangle of pixels to be sentnewPixels(int, int, int, int, boolean),
ImageConsumer,
setAnimated(boolean),
setFullBufferUpdates(boolean)
public void newPixels(int x,
int y,
int w,
int h,
boolean framenotify)
x - the x coordinate of the upper left corner of the rectangle
of pixels to be senty - the y coordinate of the upper left corner of the rectangle
of pixels to be sentw - the width of the rectangle of pixels to be senth - the height of the rectangle of pixels to be sentframenotify - true if the consumers should be sent a
SINGLEFRAMEDONE notificationImageConsumer,
setAnimated(boolean),
setFullBufferUpdates(boolean)
public void newPixels(byte[] newpix,
ColorModel newmodel,
int offset,
int scansize)
newpix - the new pixel arraynewmodel - the specified ColorModeloffset - the offset into the arrayscansize - the distance from one row of pixels to the next in
the arraynewPixels(int, int, int, int, boolean),
setAnimated(boolean)
public void newPixels(int[] newpix,
ColorModel newmodel,
int offset,
int scansize)
newpix - the new pixel arraynewmodel - the specified ColorModeloffset - the offset into the arrayscansize - the distance from one row of pixels to the next in
the arraynewPixels(int, int, int, int, boolean),
setAnimated(boolean)Ces informations proviennent du site de http://java.sun.com
Le contenu de cette page provient du site de Sun, et est généré depuis un cache sur l'infobrol après certains traitements automatisés. La présentation peut donc différer du document original, mais le contenu aussi. Vous pouvez utiliser ce bouton pour afficher la page originale du site de Sun :
Maintenir les pages en cache sur différents sites peut offrir plus de disponibilité.
Chaque page est indexée dans la base de donnée, ce qui permet de retrouver facilement les informations, au moyen des sommaires, du moteur de recherche interne, etc.
Des facilités sont mises en place pour que les membres de l'infobrol puissent effectuer des traductions en français des différents documents. Ceci devrait permettre aux débutants en programmation Java de consulter les API en français s'ils maîtrisent moins bien la langue de Shakespeare. Dans le cas où une traduction a été soumise, elle est disponible au moyen d'un lien en bas de page. Si la traduction a été validée, la page s'affiche par défaut en français, et un lien en bas de page permet d'atteindre la version en anglais.
Le code sur l'infobrol est automatiquement coloré selon la syntaxe, et les différents mots clés sont transformés en liens pour accéder rapidement aux informations.
Vous avez la possibilité de partager vos expériences en proposant vos propres extraits de code en utilisant le bouton "ajouter un commentaire" en bas de page. Si vous visitez simplement l'infobrol, vous avez déjà accès à cette fonction, mais si vous étes membre du brol, vous pouvez en plus utiliser des boutons supplémentaires de mise en forme, dont la coloration automatique de vos extraits de codes.
Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher les interactions avec les réseaux sociaux sur ces pages.
7 mots clés dont 0 définis manuellement (plus d'information...).
Avertissement
Cette page ne possède pas encore de mots clés manuels, ceci est donc un exemple automatique (les niveaux de pertinence sont fictifs, mais les liens sont valables). Pour tester le nuage avec une page qui contient des mots définis manuellement, vous pouvez cliquer ici.Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher le nuage de mots clés.
Recherche (afficher)
Utilisateur (masquer)
Navigation (masquer)
Apparence (afficher)
Stats (afficher)
Citation (masquer)