Re: [Matplotlib-users] imshow: large eps-files

2009-05-01 Thread Eric Firing
Peter Pippan wrote: > Hi, > > I was wondering about the eps output produced by imshow(). > > This program > -- > from pylab import * > Z = rand(10,10) > imshow(Z,interpolation='nearest',cmap=cm.bone) > savefig('bone.eps') > imshow(Z,interpolation='neare

[Matplotlib-users] imshow: large eps-files

2009-04-17 Thread Peter Pippan
Hi, I was wondering about the eps output produced by imshow(). This program -- from pylab import * Z = rand(10,10) imshow(Z,interpolation='nearest',cmap=cm.bone) savefig('bone.eps') imshow(Z,interpolation='nearest',cmap=cm.gray) savefig('gray.eps')