Answers for "pil image.fromarray"

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
1

pillow image from array

PIL.Image.fromarray(your_array)
Posted by: Guest on May-12-2020
2

pil resize image

im = Image.open('image.jpg')  
im = im.resize((w, h))
Posted by: Guest on October-17-2020

Python Answers by Framework

Browse Popular Code Answers by Language