On Mon, 2022-11-28 at 02:58 -0300, Alexandre Torres Porres wrote:
For the record, I just realized default colors of iemguis is note "pure white" as we've been discussing.
Sure it is "witheish", more precisely, it is "FCFCFC" instead of "FFFFFF" (pure white). So a very light grey color (99% brightness in the grey scale). This is not a regression, it's the same in pd 0.48, which I also tested.
I don't know why or where that happens in the code
I haven't checked the code, but the old encoding allowed for only 6 bits per channel. Assuming the two least significant bits are set to 0, FC is the highest value possible in that scheme
0xFC = 0b1111 1100
Roman