Which of the following will remove the blue color from a pixel, leaving only the red and green components?

pixel.setBlue(0);
  • pixel.setBlue(255);
  • pixel.setRed(0);
  • pixel.setRed(255);
  • pixel.setColor(0);
  • pixel.setColor(red + green - blue);

There are no hints for this question