Answers for "pil image to grayscale python"

1

python image to grayscale

from PIL import Image
Image.open("image.jpg").convert("L").save("result.jpg")
Posted by: Guest on January-01-2022
1

pillow rgb to grayscale

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

Python Answers by Framework

Browse Popular Code Answers by Language