comment obtenir un objet d'image de l'array en python

>>> im = PIL.Image.fromarray(numpy.uint8(I))
#where I is your array form of the image
Yucky Yacare