Enregistrer le tableau Numpy en tant qu'image Python

from PIL import Image
im = Image.fromarray(A)
im.save("your_file.jpeg")
Real Raccoon