Consider an image that is 25 x 10 pixels in size.
for (Pixel pix : image.getPixels()) { pix.setRed(0); }
how many Pixel objects would have their "Red" value set to 0?
There are no hints for this question