Answers for "convert PIL image to gray scale"

0

python pil to greyscale

#PIL image
img2 = img.convert('L')
Posted by: Guest on February-06-2021
0

pillow rgb to grayscale

Image.open(path).convert('LA')
Posted by: Guest on March-21-2021

Code answers related to "convert PIL image to gray scale"

Python Answers by Framework

Browse Popular Code Answers by Language