06-17-2022, 04:26 PM
(This post was last modified: 06-17-2022, 04:28 PM by Gully.
Edit Reason: more info
)
Hi, sallyanne. The color of the background is 000000 (HTML notation) or 000 (RGB notation). I do try to make it greyscale with step 8. And then I export as a "8bpc Gray".
Then when I import to Python with
from PIL import Image
mask = Image.open("next.png")
mask.mode
The mask.mode command tells me that the mode is "L", which is supposed to be some form of grayscale. Thus it seems to be exporting as a grayscale image, I think. I will look into the color>desaturate that you mentioned. Thanks, sallyanne.
Then when I import to Python with
from PIL import Image
mask = Image.open("next.png")
mask.mode
The mask.mode command tells me that the mode is "L", which is supposed to be some form of grayscale. Thus it seems to be exporting as a grayscale image, I think. I will look into the color>desaturate that you mentioned. Thanks, sallyanne.