Looking at the Brightness and Contrast classes in ImageEnhance:
https://pillow.readthedocs.io/en/stable/reference/ImageEnhance.html
The image is in RGB mode, 8 bits per channel.
I could apply Brightness first, then Contrast to the same image. Or I could choose the opposite order.
Does it make a difference? If it does, is there a recommended order?
Would the recommendation change if the image was in L mode, 8 bits per pixel?