devxlogo

Create the “Night” Filter Using the RGBImageFilter Class

Create the “Night” Filter Using the RGBImageFilter Class

The following code uses the RGBImageFilter class to create the “night” effect on an image:

import java.awt.image.*;public class NightFilter extends RGBImageFilter { double frac;  //0.0<=g>>=16;    int green=rgb & 0x0000FF00;green>>>=8;    int blue=rgb & 0x0000FF;        int r=(int) (red*frac);    int g=(int) (green*frac);    int b=(int) (blue*frac);        return (0x000000FF
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist