.. _pylab_examples-image_demo3:

pylab_examples example code: image_demo3.py
===========================================



.. plot:: /media/TOSHI/temp/numpy_scipy_matplotlib/matplotlib/matplotlib-1.1.1~rc2/doc/mpl_examples/pylab_examples/image_demo3.py

::

    #!/usr/bin/env python
    from pylab import *
    try:
        from PIL import Image
    except ImportError, exc:
        raise SystemExit("PIL must be installed to run this example")
    
    import matplotlib.cbook as cbook
    
    datafile = cbook.get_sample_data('lena.jpg')
    lena = Image.open(datafile)
    dpi = rcParams['figure.dpi']
    figsize = lena.size[0]/dpi, lena.size[1]/dpi
    
    figure(figsize=figsize)
    ax = axes([0,0,1,1], frameon=False)
    ax.set_axis_off()
    im = imshow(lena, origin='lower')
    
    show()
    
    

Keywords: python, matplotlib, pylab, example, codex (see :ref:`how-to-search-examples`)