Small example to plot lena.
../../../_images/plot_lena_1.png

Python source code: plot_lena.py

from scipy import misc
l = misc.lena()
misc.imsave('lena.png', l) # uses the Image module (PIL)
import matplotlib.pyplot as plt
plt.imshow(l)
plt.show()