In this method you should create a new image whose pixels are the inverse of those in the source image. To convert an image to its inverse, for each pixel, set all three of its red, green, and blue values to be the inverse of their current color value. The inverse of a color value k is defined as 255 – k. For example, the pixel (110, 52, 236) has an inverse of (145, 203, 19).