When I'm using this code:
```
image.Gamma(GammaRed, GammaGreen, GammaBlue);
```
...actually only GammaRed seems to be working. GammaGreen and GammaBlue are being ignored, and GammaRed being applied to all channels. So this code works exactly like that:
```
image.Gamma(GammaRed);
```
Magick.NET-7.0.0.0009-Q8-AnyCPU-net40-client
```
image.Gamma(GammaRed, GammaGreen, GammaBlue);
```
...actually only GammaRed seems to be working. GammaGreen and GammaBlue are being ignored, and GammaRed being applied to all channels. So this code works exactly like that:
```
image.Gamma(GammaRed);
```
Magick.NET-7.0.0.0009-Q8-AnyCPU-net40-client