You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been searching in the document and found it use "grayscale" in some places and "greyscale" in some other places, describing same type of images in Pillow. I also viewed those parts of code and found out they are mostly consistent with corresponding documents.
What did you expect to happen?
It should be using the same word across the whole document and code.
What actually happened?
Mix use of slightly different spelling words across multiple places.
What are your OS, Python and Pillow versions?
Not related to the issue. The mix use of both words seems to have been the case for a very long time, at least since Pillow 3.x, which makes me a bit confused.
What did you do?
I've been searching in the document and found it use "grayscale" in some places and "greyscale" in some other places, describing same type of images in Pillow. I also viewed those parts of code and found out they are mostly consistent with corresponding documents.
What did you expect to happen?
It should be using the same word across the whole document and code.
What actually happened?
Mix use of slightly different spelling words across multiple places.
What are your OS, Python and Pillow versions?
Not related to the issue. The mix use of both words seems to have been the case for a very long time, at least since Pillow 3.x, which makes me a bit confused.
Examples
Examples of grayscale:
L
(8-bit pixels, grayscale) [Modes]PIL.ImageOps.grayscale(image)
]Examples of greyscale:
Image.convert(mode=None, matrix=None, dither=None, palette=Palette.WEB, colors=256)
]Image.histogram(mask=None, extrema=None)
,Image.entropy(mask=None, extrema=None)
]PIL.ImageOps.solarize(image, threshold=128)
]The text was updated successfully, but these errors were encountered: