- java.lang.Object
-
- java.awt.image.FilteredImageSource
-
- All Implemented Interfaces:
- ImageProducer
public class FilteredImageSource extends Object implements ImageProducer
This class is an implementation of the ImageProducer interface which takes an existing image and a filter object and uses them to produce image data for a new filtered version of the original image. Here is an example which filters an image by swapping the red and blue compents:Image src = getImage("doc:///demo/images/duke/T1.gif"); ImageFilter colorfilter = new RedBlueSwapFilter(); Image img = createImage(new FilteredImageSource(src.getSource(), colorfilter));
- See Also:
ImageProducer
-
-
Constructor Summary
Constructors Constructor and Description FilteredImageSource(ImageProducer orig, ImageFilter imgf)
Constructs an ImageProducer object from an existing ImageProducer and a filter object.
-
Method Summary
Methods Modifier and Type Method and Description void
addConsumer(ImageConsumer ic)
Adds the specifiedImageConsumer
to the list of consumers interested in data for the filtered image.boolean
isConsumer(ImageConsumer ic)
Determines whether an ImageConsumer is on the list of consumers currently interested in 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
startProduction(ImageConsumer ic)
Starts production of the filtered image.
-
-
-
Constructor Detail
-
FilteredImageSource
public FilteredImageSource(ImageProducer orig, ImageFilter imgf)
Constructs an ImageProducer object from an existing ImageProducer and a filter object.- Parameters:
orig
- the specifiedImageProducer
imgf
- the specifiedImageFilter
- See Also:
ImageFilter
,Component.createImage(java.awt.image.ImageProducer)
-
-
Method Detail
-
addConsumer
public void addConsumer(ImageConsumer ic)
Adds the specifiedImageConsumer
to the list of consumers interested in data for the filtered image. An instance of the originalImageFilter
is created (using the filter'sgetFilterInstance
method) to manipulate the image data for the specifiedImageConsumer
. The newly created filter instance is then passed to theaddConsumer
method of the originalImageProducer
.This method is public as a side effect of this class implementing the
ImageProducer
interface. It should not be called from user code, and its behavior if called from user code is unspecified.- Specified by:
addConsumer
in interfaceImageProducer
- Parameters:
ic
- the consumer for the filtered image- See Also:
ImageConsumer
-
isConsumer
public boolean isConsumer(ImageConsumer ic)
Determines whether an ImageConsumer is on the list of consumers currently interested in data for this image.This method is public as a side effect of this class implementing the
ImageProducer
interface. It should not be called from user code, and its behavior if called from user code is unspecified.- Specified by:
isConsumer
in interfaceImageProducer
- Parameters:
ic
- the specifiedImageConsumer
- Returns:
- true if the ImageConsumer is on the list; false otherwise
- See Also:
ImageConsumer
-
removeConsumer
public void removeConsumer(ImageConsumer ic)
Removes an ImageConsumer from the list of consumers interested in data for this image.This method is public as a side effect of this class implementing the
ImageProducer
interface. It should not be called from user code, and its behavior if called from user code is unspecified.- Specified by:
removeConsumer
in interfaceImageProducer
- Parameters:
ic
- the specifiedImageConsumer
- See Also:
ImageConsumer
-
startProduction
public void startProduction(ImageConsumer ic)
Starts production of the filtered image. If the specifiedImageConsumer
isn't already a consumer of the filtered image, an instance of the originalImageFilter
is created (using the filter'sgetFilterInstance
method) to manipulate the image data for theImageConsumer
. The filter instance for theImageConsumer
is then passed to thestartProduction
method of the originalImageProducer
.This method is public as a side effect of this class implementing the
ImageProducer
interface. It should not be called from user code, and its behavior if called from user code is unspecified.- Specified by:
startProduction
in interfaceImageProducer
- Parameters:
ic
- the consumer for the filtered image- See Also:
ImageConsumer
-
requestTopDownLeftRightResend
public void requestTopDownLeftRightResend(ImageConsumer ic)
Requests that a given ImageConsumer have the image data delivered one more time in top-down, left-right order. The request is handed to the ImageFilter for further processing, since the ability to preserve the pixel ordering depends on the filter.This method is public as a side effect of this class implementing the
ImageProducer
interface. It should not be called from user code, and its behavior if called from user code is unspecified.- Specified by:
requestTopDownLeftRightResend
in interfaceImageProducer
- Parameters:
ic
- the specifiedImageConsumer
- See Also:
ImageConsumer
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
17/11/2024 17:22:03 Cette version de la page est en cache (à la date du 17/11/2024 17:22:03) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 31/08/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-java/awt/image/filteredimagesource.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.