I am stuck in a problem and dont know where to look at. I need to increase intensity of particular color in image, like R, G, or Blue. When I am doing that, certain colors are not rendering properly.
Below is the image that I took for testing:
Now when I increase like Green color:
A = Color.alpha(p);
R = Color.red(p);
G = (int)(Color.green(p)*1.2);
B = Color.blue(p);
What can be the solution to fix those Pink patches.
Thanks