import java.awt.Color; class RedPixel extends PixelTransform{ int getPixel(int i, int j){ int intColor = image.getRGB(i,j); Color color = new Color( intColor ); return new Color ( color.getRed(), 0, 0 ) . getRGB(); } }