org.bounce.image
Class SilhouetteFilter
java.lang.Object
java.awt.image.ImageFilter
java.awt.image.RGBImageFilter
org.bounce.image.BaseFilter
org.bounce.image.SilhouetteFilter
- All Implemented Interfaces:
- ImageConsumer, Cloneable
public class SilhouetteFilter
- extends BaseFilter
A filter to create an silhouette of an image, ie a
visible pixel is replaced by a pixel of a different color.
- Version:
- $Revision: 1.4 $, $Date: 2008/01/28 21:28:37 $
- Author:
- Edwin Dankert
Constructor Summary |
SilhouetteFilter(Color color)
Constructs a Filter that can be used to create a silhouette. |
Method Summary |
int |
filterRGB(int x,
int y,
int rgb)
Overrides RGBImageFilter.filterRGB . |
SilhouetteFilter
public SilhouetteFilter(Color color)
- Constructs a Filter that can be used to create a silhouette.
- Parameters:
color
- the color of the silhouette.
filterRGB
public int filterRGB(int x,
int y,
int rgb)
- Overrides
RGBImageFilter.filterRGB
.
- Specified by:
filterRGB
in class RGBImageFilter
- Parameters:
x
- the horizontal position of the pixel.y
- the vertical position of the pixel.rgb
- the color of the pixel.
- Returns:
- the new rgb value
Copyright © 2002-2011 Edwin Dankert. All Rights Reserved.