[Matplotlib-users] PS backend and Draw Event

2009-04-03 Thread Crend King
Hello everyone. I have a problem about the PS backend and the Draw Event. I read the "Automatically make room for tick labels" section in the matplotlib Howto page. It is very useful to my project, an

Re: [Matplotlib-users] PS backend

2009-01-21 Thread John Hunter
On Wed, Jan 21, 2009 at 8:25 AM, Michael Droettboom wrote: > I've removed the "%%EOF" comment from the embedded font in SVN (your > suggested change). I'm still stumped as to why this matters, but it > should be benign. Since this was a windows platform, I am curious if this has something to do

Re: [Matplotlib-users] PS backend

2009-01-21 Thread Michael Droettboom
I've removed the "%%EOF" comment from the embedded font in SVN (your suggested change). I'm still stumped as to why this matters, but it should be benign. Mike Paul Novak wrote: > I am using matplotlib SVN revision 6810, and GSview 4.9 for Windows. > > Paul > > Michael Droettboom wrote: >> Whi

Re: [Matplotlib-users] PS backend

2009-01-20 Thread Paul Novak
I am using matplotlib SVN revision 6810, and GSview 4.9 for Windows. Paul Michael Droettboom wrote: > Which version of matplotlib and ghostscript are you using? With > matplotlib SVN trunk and gs 7.07, I can't reproduce this here, either > with your provided ps file or generating it myself. >

Re: [Matplotlib-users] PS backend

2009-01-20 Thread Michael Droettboom
Which version of matplotlib and ghostscript are you using? With matplotlib SVN trunk and gs 7.07, I can't reproduce this here, either with your provided ps file or generating it myself. Paul Novak wrote: > Hello, > > I am having some problems with the PS backend. I used the following > script t

[Matplotlib-users] PS backend

2009-01-19 Thread Paul Novak
Hello, I am having some problems with the PS backend. I used the following script to create a PostScript file #!/usr/bin/env python import matplotlib matplotlib.use('PS') import matplotlib.pyplot as plt import numpy x1 = numpy.arange(0,5) y1 = x1 plt.plot(x1, y1) plt.savefig('ps_backend.ps') pl

Re: [Matplotlib-users] PS backend does not respect kwargs

2008-02-04 Thread Michael Droettboom
This should be fixed now in SVN r4938. The graphics context was "sticking". Cheers, Mike [EMAIL PROTECTED] wrote: > When using the PostScript backend, and plotting several lines with the same > call to plot (or when plotting a LineCollection), kwargs are applied to the > first line only, and n

[Matplotlib-users] PS backend does not respect kwargs

2008-02-01 Thread pnovak
When using the PostScript backend, and plotting several lines with the same call to plot (or when plotting a LineCollection), kwargs are applied to the first line only, and not to every line. Included is a minimal script that exhibits this problem. The saved figure shows only one thick red line