Small example to plot lena.
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()