Salvar o Numpy Array como Image Python

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