From: Darren D. <dd...@co...> - 2004-10-05 19:03:23
|
Congratulations John, thats wonderful! On Tuesday 05 October 2004 01:42 pm, John Hunter wrote: > from tempfile import mktemp > from urllib import urlretrieve > from matplotlib.matlab import * > > url =3D 'http://matplotlib.sf.net/clara.png' > fname =3D =A0mktemp('.png') > print 'Downloading image; this may take a minute...' > urlretrieve(url, fname) > > figure(figsize=3D(8,6)) > im =3D imread(fname) > imshow(im) > axis('off') > title('Clara Charlotte Hunter, born 10/2/2004') > show() =2D-=20 Darren |