Answers for "python pil create image from list"

2

pil image from numpy

from PIL import Image

PIL_image = Image.fromarray(numpy_image.astype('uint8'), 'RGB')
Posted by: Guest on October-04-2020
0

pil python image

from PIL import Image
im = Image.open("bride.jpg")
im.rotate(45).show()
Posted by: Guest on March-23-2021

Python Answers by Framework

Browse Popular Code Answers by Language