![]() ![]() |
| |||||||||
| This page removed for FERPA compliance | ||||||||||
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
| And what's the maximum value allowed for a color component of a pixel? -Student1680 |
| Basically, we're asking what happens to a color value when you try to set it outside of the acceptable range? Does it max out the red? Does it throw an error? What Happen? -Student1680 |
| REMOVED is predefined in JES. Type it. The word turns purple/bold. You can assume we won't ask you any trick questions where we'll give you something that'll generate an error because it isn't defined. -Student1680 |
| so when the pixel is set to white its values are 255,255,255. we then set the value of the red value to 0 so the new value for our pixel is 0,255,255. We then get the value of the red which is now zero and it is to the green value so the final value is 0,255,0. What color is that? -Student2081 |