| Author |
How to remove red color from selected image area ?
|
Manoj Tare
Greenhorn
Joined: Feb 04, 2003
Posts: 26
|
|
|
How to remove red color from selected image area
|
 |
Steve Luke
Bartender
Joined: Jan 28, 2003
Posts: 3035
|
|
You can create a subclass of the java.awt.RGBImageFilter (abstract) class. You will have to override the filterRGB(int x, int y, int rgbValue) methodto remove the red component. Beware, I have used this before and it was VERY sklow. It reduced animation rates from about 10fps to 2 fps. (for special reasons I had to filter before each frame was displayed in order to maintain the underlying values). Steve
|
Steve
|
 |
 |
|
|
subject: How to remove red color from selected image area ?
|
|
|